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