9 lines
199 B
C#
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>();
|
|
}
|
|
} |