11 lines
200 B
C#
11 lines
200 B
C#
|
namespace ShopDataModels.Models
|
|||
|
{
|
|||
|
public interface ICustomerModel : IId
|
|||
|
{
|
|||
|
string FIO { get; }
|
|||
|
string PhotoFilePath { get; }
|
|||
|
string Email { get; }
|
|||
|
string ProductCategoryName { get; }
|
|||
|
}
|
|||
|
}
|