2023-04-14 01:56:19 +04:00

8 lines
99 B
C#

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