Coursach/Course/Contracts/SearchModels/DetailSearchModel.cs

19 lines
380 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Contracts.SearchModels
{
public class DetailSearchModel
{
public int? Id { get; set; }
public string? Name { get; set; }
public int? UserId { get; set; }
2024-04-30 22:27:52 +04:00
public DateTime? DateFrom { get; set; }
public DateTime? DateTo { get; set; }
}
}