11 lines
235 B
C#
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; }
|
|||
|
}
|
|||
|
}
|