mirror of
https://github.com/barelyprofessional/KfChatDotNet.git
synced 2026-04-30 03:22:04 -04:00
11 lines
400 B
C#
11 lines
400 B
C#
namespace KfChatDotNetWsClient.Models;
|
|
|
|
public class ChatClientConfigModel
|
|
{
|
|
public required Dictionary<string, string> Cookies { get; set; } = new();
|
|
// Currently wss://kiwifarms.net/chat.ws
|
|
public required Uri WsUri { get; set; }
|
|
public int ReconnectTimeout { get; set; } = 30;
|
|
public string CookieDomain { get; set; } = "kiwifarms.net";
|
|
public string? Proxy { get; set; }
|
|
} |