PIbd-31_Malafeev.L.S._COP_25/Cop_25/Models/IDeliveryModel.cs

17 lines
329 B
C#
Raw Normal View History

2024-11-05 22:04:24 +04:00
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; }
}
}