2024-01-02 20:46:28 -06:00
|
|
|
|
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; }
|
2024-01-02 20:46:28 -06:00
|
|
|
|
}
|
|
|
|
|
|
}
|