11 lines
344 B
C#
11 lines
344 B
C#
using JSMR.Domain.Enums;
|
|
|
|
namespace JSMR.Application.Integrations.DLSite.Models;
|
|
|
|
public class VoiceWorkTranslation
|
|
{
|
|
public required string OriginalProductId { get; init; }
|
|
public bool IsOfficialTranslation { get; init; }
|
|
public bool IsRecommendedTranslation { get; init; }
|
|
public required Language Language { get; init; }
|
|
} |