PIbd-21_Pyatakov_KM_Markov_.../UniversityContracts/SearchModels/DocumentSearchModel.cs
2023-04-08 14:02:34 +04:00

18 lines
438 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace UniversityContracts.SearchModels
{
public class DocumentSearchModel
{
public int? Id { get; set; }
public string? Name { get; set; }
public int? UserId { get; set; }
public DateTime? DateFrom { get; set; }
public DateTime? DateTo { get; set; }
}
}