LANCommander/LANCommander.SDK/Models/Settings.cs

14 lines
296 B
C#
Raw Permalink Normal View History

using System;
using System.Collections.Generic;
using System.Text;
namespace LANCommander.SDK.Models
{
public class Settings
{
public int IPXRelayPort { get; set; }
public string IPXRelayHost { get; set; }
2025-02-22 00:26:54 -06:00
public bool EnableUserLibraries { get; set; }
}
}