16 lines
331 B
C#
Raw Permalink Normal View History

2024-02-08 20:30:24 +04:00
using PrecastConcretePlantDataModels;
using System;
2024-02-08 00:52:37 +04:00
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
2024-02-08 20:30:24 +04:00
namespace PrecastConcretePlantDataModels.Models
2024-02-08 00:52:37 +04:00
{
2024-05-11 04:12:28 +04:00
public interface IClientModel : IId
{
string ClientFIO { get; }
string Email { get; }
string Password { get; }
}
2024-02-08 20:30:24 +04:00
}