1
0
oop-1-labs/Lab5/Lab5.TouristInformationCenter/Statue.cs

16 lines
434 B
C#

namespace Lab5.TouristInformationCenter
{
class Statue : Location {
public string Author { get; set; }
public string MonumentName { get; set; }
public Statue(string name, string city, string address, int year, string manager, string author, string monumentName) : base(name, city, address, year, manager)
{
Author = author;
MonumentName = monumentName;
}
}
}