2024-03-23 11:06:35 +04:00

7 lines
102 B
C#

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