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,16 @@
|
||||
using MongoProject.Domain.Common;
|
||||
|
||||
namespace MongoProject.Domain
|
||||
{
|
||||
public class Streamer : BaseDomainModel
|
||||
{
|
||||
public int Id { get; set; }
|
||||
public DateTime? CreatedDate { get; set; }
|
||||
public string? CreatedBy { get; set; }
|
||||
public DateTime? LastModifiedDate { get; set; }
|
||||
public string? LastModifiedBy { get; set; }
|
||||
public string? Nombre { get; set; }
|
||||
public string? Url { get; set; }
|
||||
public ICollection<Video>? Videos { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user