parent
13565d1c7a
commit
294ce01bc3
@ -28,7 +28,7 @@ public struct Manga
|
|||||||
public string? originalLanguage { get; }
|
public string? originalLanguage { get; }
|
||||||
// ReSharper disable twice MemberCanBePrivate.Global
|
// ReSharper disable twice MemberCanBePrivate.Global
|
||||||
public string status { get; private set; }
|
public string status { get; private set; }
|
||||||
public ReleaseStatusByte releaseStatus { get; }
|
public ReleaseStatusByte releaseStatus { get; private set; }
|
||||||
public enum ReleaseStatusByte : byte
|
public enum ReleaseStatusByte : byte
|
||||||
{
|
{
|
||||||
Continuing = 0,
|
Continuing = 0,
|
||||||
@ -80,6 +80,7 @@ public struct Manga
|
|||||||
if(!this.authors.Contains(author))
|
if(!this.authors.Contains(author))
|
||||||
this.authors.Add(author);
|
this.authors.Add(author);
|
||||||
this.status = newManga.status;
|
this.status = newManga.status;
|
||||||
|
this.releaseStatus = newManga.releaseStatus;
|
||||||
this.year = newManga.year;
|
this.year = newManga.year;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user