Files
KfChatDotNet/KfChatDotNetGui/Models/SettingsModel.cs
barelyprofessional 9f92fc8e27 Initial commit
2024-03-25 20:11:49 +08:00

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; }
}