namespace w230415_classes.Intf { public interface IHallPlace { bool FlagBooked { get; set; } int SeatPosition { get; set; } int SeatRow { get; set; } string Uid { get; set; } } }