using System.Collections.Generic; using Newtonsoft.Json; using WeEngine.ModelInfo; namespace WeOnlineApp.Configuration.Cache { public class SceneDto : SceneModel { public List Attaches { get; set; } public bool HasEnd { get; set; } public new string Description => base.Description; [JsonIgnore] public new string _description => base._description; public new List GuideInfos { get; set; } } public class ScenePathDto { public ScenePathDto() { PathList = new List(); } public bool hasChange { get; set; } public List PathList { get; set; } } }