18 lines
381 B
C#
18 lines
381 B
C#
using MongoProject.Domain.Common;
|
|
|
|
namespace MongoProject.Domain
|
|
{
|
|
public class Actor : BaseDomainModel
|
|
{
|
|
public Actor()
|
|
{
|
|
Videos = new HashSet<Video>();
|
|
}
|
|
|
|
public string? Nombre { get; set; }
|
|
public string? Apellido { get; set; }
|
|
|
|
public virtual ICollection<Video>? Videos { get; set; }
|
|
}
|
|
}
|