mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-11-03 11:07:06 -05: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; }
|
|
}
|