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

12 lines
327 B
C#

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