2024-04-17 10:13:26 +04:00

7 lines
103 B
C#

namespace AutomobilePlantDataModels
{
public interface IId
{
int Id { get; }
}
}