13 lines
279 B
C#
13 lines
279 B
C#
using FictionArchive.Common.Enums;
|
|
|
|
namespace FictionArchive.Service.Shared.Contracts.Events;
|
|
|
|
public interface INovelCreated
|
|
{
|
|
uint NovelId { get; }
|
|
string Title { get; }
|
|
Language OriginalLanguage { get; }
|
|
string Source { get; }
|
|
string AuthorName { get; }
|
|
}
|