You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

15 lines
316 B

  1. using System.Collections.Generic;
  2. namespace MQTTnetServer.Settings
  3. {
  4. /// <summary>
  5. /// Main Settings Model
  6. /// </summary>
  7. public class SettingsModel
  8. {
  9. /// <summary>
  10. /// Listen Settings
  11. /// </summary>
  12. public IEnumerable<ListenModel> Listen { get; set; }
  13. }
  14. }