mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-07-09 03:04:19 -04:00
11 lines
233 B
C#
11 lines
233 B
C#
using System;
|
|
|
|
namespace API.DTOs.KavitaPlus.Manage;
|
|
|
|
public sealed record ManageMatchSeriesDto
|
|
{
|
|
public SeriesDto Series { get; set; }
|
|
public bool IsMatched { get; set; }
|
|
public DateTime ValidUntilUtc { get; set; }
|
|
}
|