19 lines
516 B
C#
19 lines
516 B
C#
using DataModels.Models;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Contracts.ViewModels
|
|
{
|
|
public class DeliveryViewModel : IDeliveryModel
|
|
{
|
|
public int Id { get; set; }
|
|
public string CourierFIO { get; set; } = string.Empty;
|
|
public string Image { get; set; } = string.Empty;
|
|
public string Type { get; set; } = string.Empty;
|
|
public string Phone { get; set; } = string.Empty;
|
|
}
|
|
}
|