7 lines
95 B
C#

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