Files
KfChatDotNet/KfChatDotNetWsClient/Models/ChatClientConfigModel.cs
2025-07-07 20:12:07 -05:00

12 lines
429 B
C#

namespace KfChatDotNetWsClient.Models;
public class ChatClientConfigModel
{
// XF session token. Sent as a cookie to auth the user
public string? XfSessionToken { get; set; }
// 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; }
}