9 lines
100 B
C#
Raw Normal View History


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