7 lines
98 B
C#
Raw Permalink Normal View History

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