2024-02-13 23:15:11 +04:00

7 lines
102 B
C#

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