COP3PLUSSagirov/DataModels/Models/IDeliveryModel.cs

11 lines
235 B
C#
Raw Normal View History

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