8 lines
99 B
C#
Raw Permalink Normal View History

2023-04-14 01:56:19 +04:00
namespace FlowerShopDataModels
{
public interface IId
{
int Id { get; }
}
}