23 lines
534 B
C#
Raw 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;
public DateTime? DateLastDelivery { get; set; }
}
}