7 lines
96 B
C#
Raw Normal View History

2024-02-09 15:31:49 +04:00
namespace SushiBarDataModels
{
public interface IId
{
int Id { get; }
}
}