2024-05-18 21:41:27 +04:00

7 lines
100 B
C#

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