7 lines
141 B
C#
7 lines
141 B
C#
using SqlSugar;
|
|
|
|
namespace Seyounth.Hyosung.Data.Repositories;
|
|
|
|
public interface IRepository<T> : ISimpleClient<T> where T : class, new()
|
|
{
|
|
} |