17 lines
366 B
C#
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; }
|
||
|
|
}
|
||
|
|
}
|