2024-08-03 19:12:18 +04:00

8 lines
120 B
C#

namespace ServiceStationDataModels.HelperInterfaces
{
public interface IId
{
int ID { get; }
}
}