Add project files.
This commit is contained in:
14
JSMR.Domain/Entities/VoiceWorkCreator.cs
Normal file
14
JSMR.Domain/Entities/VoiceWorkCreator.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
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; }
|
||||
}
|
||||
Reference in New Issue
Block a user