8 lines
258 B
C#
8 lines
258 B
C#
namespace MangaReader.Core.Search.MangaDex;
|
|
|
|
public class MangaDexSearchResultDataRelationship
|
|
{
|
|
public required Guid Id { get; set; }
|
|
public required string Type { get; set; }
|
|
public Dictionary<string, object> Attributes { get; set; } = [];
|
|
} |