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

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; }
}