mirror of
https://github.com/barelyprofessional/KfChatDotNet.git
synced 2026-04-30 03:22:04 -04:00
12 lines
293 B
C#
12 lines
293 B
C#
using System;
|
|
|
|
namespace KfChatDotNetGui.Models;
|
|
|
|
public class SettingsModel
|
|
{
|
|
public string XfSessionToken { get; set; }
|
|
public Uri WsUri { get; set; }
|
|
public int ReconnectTimeout { get; set; }
|
|
public string AntiDdosPow { get; set; }
|
|
public string Username { get; set; }
|
|
} |