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 MarqueePlaceholderDto { public MarqueePlaceholderDto() { } [JsonProperty("name")] public string Name; [JsonProperty("type")] public int Type; [JsonProperty("value")] public string Value; } }