11 lines
200 B
C#
Raw Permalink Normal View History

2024-10-28 23:08:27 +04:00
namespace ShopDataModels.Models
{
public interface ICustomerModel : IId
{
string FIO { get; }
string PhotoFilePath { get; }
string Email { get; }
string ProductCategoryName { get; }
}
}