19 lines
397 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 ProviderSearchModel
{
2024-10-22 19:58:21 +04:00
public int? Id { get; set; }
public string? Name { get; set; }
public string? OrganisationType { get; set; }
public DateTime? DateLastDelivery { get; set; }
}
}