Files
StandardSence/StandardScene.Core/Model/SimpleConfig.cs
T
2026-06-14 11:19:15 +08:00

17 lines
366 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace StandardScene.Model
{
public class SimpleConfig
{
public string Autoload { get; set; }
public int Port { get; set; }
public string Ip { get; set; }
public bool AllowMultiple { get; set; }
}
}