mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-10-27 08:42:28 -04:00
8 lines
154 B
C#
8 lines
154 B
C#
namespace API.DTOs.Device;
|
|
|
|
public sealed record SendSeriesToDeviceDto
|
|
{
|
|
public int DeviceId { get; set; }
|
|
public int SeriesId { get; set; }
|
|
}
|