Files
jsmr/JSMR.Domain/Entities/EnglishVoiceWork.cs
2025-08-26 09:20:13 -04:00

12 lines
350 B
C#

namespace JSMR.Domain.Entities;
public class EnglishVoiceWork
{
public int EnglishVoiceWorkId { get; set; }
public required string ProductName { get; set; }
public required string Description { get; set; }
public bool? IsValid { get; set; }
public int VoiceWorkId { get; set; }
public VoiceWork? VoiceWork { get; set; }
}