using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace DidabuCloud.Unity.Core { public class MarqueeDto { public MarqueeDto() { Placeholders = new List(); } [JsonProperty("content")] public string Content; [JsonProperty("placeholders")] public List Placeholders; } }