using System.Collections.Generic; namespace Lab5.TouristInformationCenter { /// /// Class used for storing data related a single museum. /// class Museum : Location { public string Type { get; set; } public List Workdays { get; set; } public double Price { get; set; } public bool HasGuide { get; set; } public Museum(string city, string manager, string name, string address, int year, string type, List workdays, double price, bool hasGuide) : base(city, manager, name, address, year) { Type = type; Workdays = workdays; Price = price; HasGuide = hasGuide; } } }