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; } } }