23 lines
555 B
C#
23 lines
555 B
C#
using MongoProject.Domain.Common;
|
|
|
|
namespace MongoProject.Domain
|
|
{
|
|
public class Video : BaseDomainModel
|
|
{
|
|
public Video()
|
|
{
|
|
Actores = [];
|
|
}
|
|
|
|
public string? Nombre { get; set; }
|
|
public int StreamerId { get; set; }
|
|
public virtual Streamer? Streamer { get; set; }
|
|
public int? DirectorId { get; set; }
|
|
public virtual Director? Director { get; set; }
|
|
|
|
public virtual ICollection<Actor>? Actores { get; set; }
|
|
|
|
|
|
}
|
|
}
|