ISEbd-22_CourseWork_School/School/SchoolContracts/SearchModels/AccountSearchModels.cs

14 lines
318 B
C#
Raw Permalink Normal View History

2024-05-01 17:54:58 +04:00
namespace SchoolContracts.SearchModels
{
public class AccountSearchModel
{
public int? Id { get; set; }
public int? StudentId { get; set; }
public int? DisciplineId { get; set; }
public DateOnly? DateFrom { get; set; }
public DateOnly? DateTo { get; set; }
}
}