12 lines
350 B
C#
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; }
|
|
} |