PIbd-21_Pyatakov_KM_Markov_.../UniversityContracts/SearchModels/StudentSearchModel.cs

19 lines
480 B
C#
Raw Permalink Normal View History

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace UniversityContracts.SearchModels
{
public class StudentSearchModel
{
public int? Id { get; set; }
public int? StudentCard { get; set; }
public int? UserId { get; set; }
public DateTime? DateFrom { get; set; }
public DateTime? DateTo { get; set; }
2023-04-07 19:09:06 +04:00
public bool? Disciplines { get; set; }
}
}