PIAPS_CW/Contracts/SearchModels/SupplySearchModel.cs

19 lines
470 B
C#
Raw Normal View History

2024-06-22 15:10:46 +04:00
using DataModels.Enums;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Contracts.SearchModels
{
public class SupplySearchModel
{
public Guid? Id { get; set; }
public string Name { get; set; } = string.Empty;
2024-06-22 15:10:46 +04:00
public SupplyStatus? Status { get; set; }
public DateTime? DateStart { get; set; }
public DateTime? DateEnd { get; set; }
}
}