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.
 
 
 
 

12 line
297 B

  1. namespace MQTTnet.Server.Configuration
  2. {
  3. public class RetainedApplicationMessagesModel
  4. {
  5. public bool Persist { get; set; } = false;
  6. public int WriteInterval { get; set; } = 10;
  7. public string Filename { get; set; } = "RetainedApplicationMessages.json";
  8. }
  9. }