Esempio n. 1
0
 public ChromaSdkInput(string Title = null, string Description = null, ChromaSdkInputAuthor Author = null, List <string> DeviceSupported = null, string Category = null)
 {
     this.Title           = Title;
     this.Description     = Description;
     this.Author          = Author;
     this.DeviceSupported = DeviceSupported;
     this.Category        = Category;
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="ChromaSdkInput" /> class.
 /// </summary>
 /// <param name="Title">Title.</param>
 /// <param name="Description">Description.</param>
 /// <param name="Author">Author.</param>
 /// <param name="DeviceSupported">DeviceSupported.</param>
 /// <param name="Category">Category.</param>
 public ChromaSdkInput(string Title = default(string), string Description = default(string), ChromaSdkInputAuthor Author = default(ChromaSdkInputAuthor), List <string> DeviceSupported = default(List <string>), string Category = default(string))
 {
     this.Title           = Title;
     this.Description     = Description;
     this.Author          = Author;
     this.DeviceSupported = DeviceSupported;
     this.Category        = Category;
 }