Files
Tranga/API/Schema/ActionsContext/Actions/Generic/ActionWithChapterRecord.cs

12 lines
331 B
C#

using System.ComponentModel.DataAnnotations;
namespace API.Schema.ActionsContext.Actions.Generic;
public interface IActionWithChapterRecord
{
/// <summary>
/// <see cref="Schema.MangaContext.Manga"/> for which the cover was downloaded
/// </summary>
[StringLength(64)]
public string ChapterId { get; init; }
}