2021-12-17 13:39:34 +00:00

9 lines
199 B
C#

using System.Collections.Generic;
using spanreed.Shared;
namespace spanreed.Server.Data{
public class Rooms {
public HashSet<string> RoomSet {get; set;} = new HashSet<string>();
}
}