using System.ComponentModel.DataAnnotations; namespace API.Schema.ActionsContext.Actions.Generic; public interface IActionWithChapterRecord { /// /// for which the cover was downloaded /// [StringLength(64)] public string ChapterId { get; init; } }