29 lines
828 B
C#
Raw Normal View History

using Models.Models;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Contracts.ViewModels
{
public class ProviderViewModel : IProviderModel
{
public int Id { get; set; }
[DisplayName("Название организации")]
public string Name { get; set; } = string.Empty;
[DisplayName("Перечернь производимой мебели")]
public string FurnitureType { get; set; } = string.Empty;
[DisplayName("Тип организации")]
public string OrganisationType { get; set; } = string.Empty;
[DisplayName("Дата последней доставки")]
2024-10-22 19:58:21 +04:00
public string? DateLastDelivery { get; set; }
}
}