mirror of
https://github.com/C9Glax/tranga.git
synced 2025-10-17 19:00:45 +02:00
12 lines
331 B
C#
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; }
|
|
} |