forked from sim0n00ps/OF-DL
8 lines
148 B
C#
8 lines
148 B
C#
namespace OF_DL.Entities.Chats
|
|
{
|
|
public class ChatCollection
|
|
{
|
|
public Dictionary<int, Chats.Chat> Chats { get; set; } = [];
|
|
}
|
|
}
|