NewGaoKaoApi/New_College.Repository/BASE/ISysRegionRepository.cs

12 lines
250 B
C#

using New_College.IRepository.Base;
using New_College.Model.Models;
namespace New_College.IRepository
{
/// <summary>
/// ISysRegionRepository
/// </summary>
public interface ISysRegionRepository : IBaseRepository<SysRegion>
{
}
}