18 lines
360 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Contracts.SearchModels
{
public class ProviderSearchModel
{
public string? Name { get; set; }
public string? OrganisationType { get; set; }
public DateTime? DateLastDelivery { get; set; }
}
}