mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-06-23 15:30:34 -04:00
10 lines
212 B
C#
10 lines
212 B
C#
using System.Collections.Generic;
|
|
|
|
namespace API.DTOs.Device;
|
|
|
|
public sealed record SendToDeviceDto
|
|
{
|
|
public int DeviceId { get; set; }
|
|
public IReadOnlyList<int> ChapterIds { get; set; } = default!;
|
|
}
|