using System.Collections.Generic; using MQTTnet.Packets; namespace MQTTnet.Client.Subscribing { public class MqttClientSubscribeOptions { public List TopicFilters { get; set; } = new List(); public uint? SubscriptionIdentifier { get; set; } public List UserProperties { get; set; } } }