using System.Collections.Generic;
namespace Lab1.TouristInformationCenter
{
///
/// Class used for storing data related a single museum.
///
class Museum
{
public string Name { get; set; }
public string City { get; set; }
public string Type { get; set; }
public List Workdays { get; set; }
public double Price { get; set; }
public bool HasGuide { get; set; }
public Museum(string name, string city, string type, List workdays, double price, bool hasGuide)
{
Name = name;
City = city;
Type = type;
Workdays = workdays;
Price = price;
HasGuide = hasGuide;
}
}
}