23 lines
510 B
C#
23 lines
510 B
C#
|
using Models;
|
|||
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace Contracts.BindlingModels
|
|||
|
{
|
|||
|
public class DeliveryBindingModel : IDeliveryModel
|
|||
|
{
|
|||
|
public int Id { get; set; }
|
|||
|
|
|||
|
public string FCs { get; set; } = string.Empty;
|
|||
|
|
|||
|
public string Wishes { get; set; } = string.Empty;
|
|||
|
|
|||
|
public string DeliveryType { get; set; } = string.Empty;
|
|||
|
|
|||
|
public string? DeliveryDate { get; set; }
|
|||
|
}
|
|||
|
}
|