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