COP3PLUSSagirov/DataModels/Models/IDeliveryModel.cs
2024-11-06 15:40:33 +04:00

11 lines
235 B
C#

namespace DataModels.Models
{
public interface IDeliveryModel
{
public string CourierFIO { get; }
public string Image { get; }
public string Type { get; }
public string Phone { get; }
}
}