7 lines
95 B
C#
Raw Normal View History

2024-10-28 14:54:01 +04:00
namespace ClientsDataModels
{
public interface IId
{
int Id { get; }
}
}