17 lines
312 B
C#
Raw Normal View History

2024-02-12 12:46:44 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace TypographyDataModels.Models
2024-02-12 12:46:44 +04:00
{
public interface IClientModel : IId
2024-02-12 12:46:44 +04:00
{
string ClientFIO { get; }
string Email { get; }
string Password { get; }
2024-02-12 12:46:44 +04:00
}
}