24 lines
719 B
C#
Raw Permalink Normal View History

2024-11-05 22:04:24 +04:00
using 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 DeliveryViewModel : IDeliveryModel
{
public int Id { get; set; }
[DisplayName("ФИО курьера")]
public string FCs { get; set; } = string.Empty;
[DisplayName("Пожелания")]
public string Wishes { get; set; } = string.Empty;
[DisplayName("Тип доставки")]
public string DeliveryType { get; set; } = string.Empty;
[DisplayName("Дата доставки")]
public string? DeliveryDate { get; set; }
}
}