8 lines
94 B
C#
Raw Normal View History

2024-05-25 11:02:04 +04:00
namespace DinerDataModels
{
public interface IId
{
int Id { get; }
}
}