mirror of
https://github.com/Kareadita/Kavita.git
synced 2026-03-10 12:05:51 -04:00
Co-authored-by: Joseph Milazzo <joseph.v.milazzo@gmail.com> Co-authored-by: Joe Milazzo <josephmajora@gmail.com>
14 lines
359 B
C#
14 lines
359 B
C#
namespace Kavita.Models.DTOs;
|
|
#nullable enable
|
|
|
|
public sealed record UpdateSeriesDto
|
|
{
|
|
public int Id { get; init; }
|
|
public string? LocalizedName { get; init; }
|
|
public string? SortName { get; init; }
|
|
public bool CoverImageLocked { get; set; }
|
|
|
|
public bool SortNameLocked { get; set; }
|
|
public bool LocalizedNameLocked { get; set; }
|
|
}
|