2024-04-30 01:41:35 +03:00

8 lines
120 B
C#

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