7 lines
98 B
C#
Raw Normal View History

2024-03-25 11:55:12 +04:00
namespace TypographyDataModels
{
public interface IId
{
int Id { get; }
}
}