PIbd-31_Malafeev.L.S._COP_25/Cop_25/Contracts/SearchModels/DeliverySearchModel.cs

20 lines
387 B
C#
Raw Normal View History

2024-11-05 22:04:24 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Contracts.SearchModels
{
public class DeliverySearchModel
{
public int? Id { get; set; }
public string? FCs { get; set; }
public string? DeliveryType { get; set; }
public string? DeliveryDate { get; set; }
}
}