18 lines
370 B
C#
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; }
|
|
}
|
|
}
|