2023-02-23 20:14:56 +04:00

7 lines
100 B
C#

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