ExternalAPI_NET8/Web.Core.IRepository/Myschool/IStudentRepository.cs
2026-05-21 17:23:36 +08:00

12 lines
195 B
C#

#region
using Web.Core.IRepository.Base;
using Web.Core.Model.Entity;
#endregion
namespace Web.Core.IRepository.Myschool;
public interface IStudentRepository : IBaseRepository<Student>
{
}