Files
Ragon/Ragon.Core/Game/RoomInformation.cs
T
2022-12-17 21:16:02 +04:00

13 lines
271 B
C#

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