Skip to content
Snippets Groups Projects
Property.cs 335 B
Newer Older
  • Learn to ignore specific revisions
  • using Newtonsoft.Json;
    
    namespace MasterDevs.ChromeDevTools.ProtocolGenerator
    {
    
    Frederik Carlier's avatar
    Frederik Carlier committed
        public class Property : Type
    
        {
            [JsonProperty("name")]
            public override string Name
            {
                get;
                set;
            }
    
            public bool Optional
            {
                get;
                set;
            }
        }
    }