NewGaoKaoApi/New_College.Repository/BASE/IT_GearInfoRepository.cs

12 lines
253 B
C#

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