2023-03-01 10:48:56 +04:00

9 lines
103 B
C#

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