15 lines
282 B
C#
Raw Normal View History

2024-10-29 09:22:02 +04:00
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; }
}
}