7 lines
141 B
C#
Raw Normal View History

2025-03-16 03:17:36 +08:00
using SqlSugar;
namespace Seyounth.Hyosung.Data.Repositories;
public interface IRepository<T> : ISimpleClient<T> where T : class, new()
{
}