spanreed/Server/Data/PrevChat.cs
2021-12-17 13:39:34 +00:00

9 lines
238 B
C#

using System.Collections.Generic;
using spanreed.Shared;
namespace spanreed.Server.Data{
public class PrevChat {
public Dictionary<string, List<ChatData>> Chats {get; set;} = new Dictionary<string, List<ChatData>>();
}
}