Илья Федотов c2faa8cfe5 Base.01
2024-05-01 12:51:35 +04:00

14 lines
278 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DinerDataModels.Models {
public interface IClientModel : IID {
string ClientFIO { get; }
string Email { get; }
string Password { get; }
}
}