選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 
 

12 行
255 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 Path { get; set; }
  8. }
  9. }