Files
KfChatDotNet/KfChatDotNetWsClient/Models/ChatClientConfigModel.cs
T
barelyprofessional 872c8317ca Total reconnect death
2026-06-26 20:27:39 -05:00

10 lines
348 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 string CookieDomain { get; set; } = "kiwifarms.net";
public string? Proxy { get; set; }
}