mirror of
https://github.com/C9Glax/tranga.git
synced 2025-07-15 11:02:17 +02:00
Moved files
Added DownloadClient to Connector
This commit is contained in:
20
Tranga/Publication.cs
Normal file
20
Tranga/Publication.cs
Normal file
@ -0,0 +1,20 @@
|
||||
namespace Tranga;
|
||||
|
||||
public struct Publication
|
||||
{
|
||||
public string sortName { get; }
|
||||
public string[] titles { get; }
|
||||
public string description { get; }
|
||||
public string[] tags { get; }
|
||||
public string posterUrl { get; } //maybe there is a better way?
|
||||
|
||||
|
||||
public Publication(string sortName, string description, string[] titles, string[] tags, string posterUrl)
|
||||
{
|
||||
this.sortName = sortName;
|
||||
this.description = description;
|
||||
this.titles = titles;
|
||||
this.tags = tags;
|
||||
this.posterUrl = posterUrl;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user