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