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 MarqueesDto { public MarqueesDto() { Marquees = new List(); } [JsonProperty("placeholderPrefix")] public string PlaceholderPrefix; [JsonProperty("placeholderSuffix")] public string PlaceholderSuffix; [JsonProperty("marquees")] public List Marquees; } }