namespace TravelAgencyDataModels.Models { public interface IPlaceModel : IId { string PlaceName { get; } string PlaceAddress { get; } } }