namespace MultiversalDiplomacy.Model;
///
/// One of the rival nations vying for control of the map.
///
public class Power
{
///
/// The power's name.
///
public string Name { get; }
public Power(string name)
{
this.Name = name;
}
public override string ToString()
{
return this.Name;
}
}