Added English localization logic during the regular scan process.
This commit is contained in:
@@ -29,6 +29,7 @@ public sealed record VoiceWorkIngest
|
||||
public AIGeneration AI { get; init; }
|
||||
public VoiceWorkSeries? Series { get; init; }
|
||||
public VoiceWorkTranslation? Translation { get; init; }
|
||||
public VoiceWorkLocalizationIngest[] Localizations { get; init; } = [];
|
||||
|
||||
public static VoiceWorkIngest From(DLSiteWork work, VoiceWorkDetails? details, ChobitResult? chobit)
|
||||
{
|
||||
|
||||
@@ -0,0 +1,10 @@
|
||||
using JSMR.Domain.Enums;
|
||||
|
||||
namespace JSMR.Application.Scanning.Contracts;
|
||||
|
||||
public sealed class VoiceWorkLocalizationIngest
|
||||
{
|
||||
public Language Language { get; init; }
|
||||
public string? Title { get; init; }
|
||||
public string? Description { get; init; }
|
||||
}
|
||||
Reference in New Issue
Block a user