17 lines
329 B
C#
17 lines
329 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace Models
|
|||
|
{
|
|||
|
public interface IDeliveryModel : IId
|
|||
|
{
|
|||
|
string FCs { get; }
|
|||
|
string Wishes { get; }
|
|||
|
string DeliveryType { get; }
|
|||
|
string? DeliveryDate { get; }
|
|||
|
}
|
|||
|
}
|