Added additional voice work update logic.
This commit is contained in:
@@ -20,7 +20,7 @@ public class VoiceWork
|
||||
public bool? IsValid { get; set; }
|
||||
public DateTime? LastScannedDate { get; set; }
|
||||
public byte Status { get; set; }
|
||||
public byte SubtitleLanguage { get; set; }
|
||||
public byte SubtitleLanguage { get; set; } // TO BE DEPRECATED
|
||||
public bool HasChobit { get; set; }
|
||||
public bool IsPurchased { get; set; }
|
||||
public int? WishlistCount { get; set; }
|
||||
@@ -36,8 +36,9 @@ public class VoiceWork
|
||||
//public int? VoiceWorkSearchId { get; set; }
|
||||
//public VoiceWorkSearch? VoiceWorkSearch { get; set; }
|
||||
|
||||
public virtual ICollection<VoiceWorkTag> VoiceWorkTags { get; set; } = [];
|
||||
public virtual ICollection<VoiceWorkCreator> VoiceWorkCreators { get; set; } = [];
|
||||
public virtual ICollection<VoiceWorkTag> Tags { get; set; } = [];
|
||||
public virtual ICollection<VoiceWorkCreator> Creators { get; set; } = [];
|
||||
public virtual ICollection<EnglishVoiceWork> EnglishVoiceWorks { get; set; } = [];
|
||||
public virtual ICollection<VoiceWorkSupportedLanguage> SupportedLanguages { get; set; } = [];
|
||||
public virtual ICollection<VoiceWorkLocalization> Localizations { get; set; } = [];
|
||||
}
|
||||
Reference in New Issue
Block a user