Files
Ragon/Ragon.Core/Game/RoomInformation.cs
T
2022-12-16 00:05:46 +04:00

13 lines
246 B
C#

namespace Ragon.Core.Game;
public class RoomInformation
{
public string Map { get; set; }
public int Min { get; set; }
public int Max { get; set; }
public override string ToString()
{
return $"Map: {Map} Count: {Min}/{Max}";
}
}