7 lines
100 B
C#
Raw Normal View History

2024-05-18 21:41:27 +04:00
namespace IceCreamShopDataModels
{
public interface IId
{
int Id { get; }
}
}