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