using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace AsbCloudApp.Requests; /// /// параметры запроса для получения событий телеметрии /// public class TelemetryEventRequest { /// /// ключи телеметрии /// public IEnumerable IdsTelemetries { get; set; } = null!; /// /// ключи категорий /// public IEnumerable? IdsCategories { get; set; } /// /// строка поиска /// public string? SearchString { get; set; } }