8 lines
101 B
C#
Raw Normal View History

2024-02-06 23:26:29 +04:00
namespace AutoWorkshopDataModels
{
public interface IId
{
int Id { get; }
}
}