23 lines
532 B
C#
Raw Permalink Normal View History

using Models.Models;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Contracts.BindingModels
{
public class ProviderBindingModel : IProviderModel
{
public int Id { get; set; }
public string Name { get; set; } = string.Empty;
public string FurnitureType { get; set; } = string.Empty;
public string OrganisationType { get; set; } = string.Empty;
2024-10-22 19:58:21 +04:00
public string? DateLastDelivery { get; set; }
}
}