14 lines
278 B
C#
Raw Normal View History

2024-05-01 12:51:35 +04:00
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; }
}
}