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

15 lines
282 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 IStatusModel : IId
{
string StatusName { get; }
}
}