mirror of
https://github.com/C9Glax/tranga.git
synced 2025-10-16 10:20:46 +02:00
12 lines
487 B
C#
12 lines
487 B
C#
using API.Schema.ActionsContext.Actions.Generic;
|
|
using API.Schema.MangaContext;
|
|
|
|
namespace API.Schema.ActionsContext.Actions;
|
|
|
|
public sealed class ChaptersRetrievedActionRecord(string action, DateTime performedAt, string mangaId)
|
|
: ActionWithMangaRecord(action, performedAt, mangaId)
|
|
{
|
|
public ChaptersRetrievedActionRecord(Manga manga) : this(ChaptersRetrievedAction, DateTime.UtcNow, manga.Key) { }
|
|
|
|
public const string ChaptersRetrievedAction = "Manga.ChaptersRetrieved";
|
|
} |