using Shaker.Models; using System; using System.IO; namespace ShakerApp.Models { public class ShakerSettingModel : BaseModel { public string Language = "zh-cn"; public string DataDirectory = Path.Combine(AppDomain.CurrentDomain.BaseDirectory,"Data"); public WorkingMode WorkingMode = WorkingMode.Local; public string RemoteIP = "127.0.0.1"; public int RemotePort = 61616; public RemoteControlModel RemoteControlModel = RemoteControlModel.Lan; public bool EnabledRemote = false; public bool AutoStartService = false; public override object Clone() { return this.CloneBase(); } } }