using System.Collections.Generic; namespace API.DTOs.Device.EmailDevice; public sealed record SendToEmailDeviceDto { public int DeviceId { get; set; } public IReadOnlyList ChapterIds { get; set; } = default!; }