Video 76
Se hizo toda la parte del Unit Of Work y estoy a punto de terminar la de tests unitarios
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
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; }
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user