2024-10-29 09:22:02 +04:00

18 lines
370 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Security.Cryptography;
using System.Text;
using System.Threading.Tasks;
namespace ClientsDataModels.Models
{
public interface IClientModel : IId
{
string Name { get; }
float? Amount { get; }
string? Reviews { get; }
int StatusId { get; }
}
}