Files
jsmr/JSMR.Domain/Entities/VoiceWorkSupportedLanguage.cs

10 lines
290 B
C#

namespace JSMR.Domain.Entities;
public sealed class VoiceWorkSupportedLanguage
{
public int VoiceWorkSupportedLanguageId { get; set; }
public int VoiceWorkId { get; set; }
public string Language { get; set; } = null!;
public VoiceWork VoiceWork { get; set; } = null!;
}