using Shaker.Model; using System; namespace ShakerApp.Models { public class ShakerSettingModel : BaseModel { public string Language = "zh-cn"; public string DataDirectory = 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(); } } }