8 lines
94 B
C#
Raw Normal View History

2024-02-06 12:30:20 +03:00
namespace DinerDataModels
{
public interface IId
{
int Id { get; }
}
}