8 lines
103 B
C#
Raw Normal View History

2024-05-11 11:52:27 +04:00
namespace SecuritySystemDataModels
{
public interface IId
{
int Id { get; }
}
}