14 lines
362 B
C#
14 lines
362 B
C#
namespace JSMR.Domain.Entities;
|
|
|
|
public class VoiceWorkCreator
|
|
{
|
|
public int VoiceWorkCreatorId { get; set; }
|
|
public int? Position { get; set; }
|
|
public bool? IsValid { get; set; }
|
|
|
|
public int CreatorId { get; set; }
|
|
public Creator? Creator { get; set; }
|
|
|
|
public int VoiceWorkId { get; set; }
|
|
public VoiceWork? VoiceWork { get; set; }
|
|
} |