7 lines
93 B
C#
Raw Normal View History

2024-03-09 18:07:43 +04:00
namespace HotelDataModels
{
public interface IId
{
int Id { get; }
}
}