9 lines
103 B
C#
Raw Normal View History

2023-03-01 10:48:56 +04:00
namespace ComputersShopDataModels
{
public interface IId
{
int Id { get; }
}
}