2024-10-28 23:08:27 +04:00

11 lines
200 B
C#

namespace ShopDataModels.Models
{
public interface ICustomerModel : IId
{
string FIO { get; }
string PhotoFilePath { get; }
string Email { get; }
string ProductCategoryName { get; }
}
}