mirror of
https://github.com/barelyprofessional/KfChatDotNet.git
synced 2026-08-02 11:38:34 -04:00
10 lines
348 B
C#
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; }
|
|
} |