CourseWork/University/UniversityContracts/SearchModels/PlanOfStudySearchModel.cs

18 lines
435 B
C#
Raw Normal View History

2024-04-18 19:35:33 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace UniversityContracts.SearchModels
{
public class PlanOfStudySearchModel
{
public int? Id { get; set; }
public int UserId { get; set; }
2024-04-18 19:35:33 +04:00
public string? Profile { get; set; }
2024-05-02 17:22:43 +04:00
public DateOnly? DateFrom { get; set; }
public DateOnly? DateTo { get; set; }
2024-04-18 19:35:33 +04:00
}
}