Files
CleanArchitecture/CleanArchitectureRedis/MongoProject/MongoProject.Domain/Streamer.cs
Alejandro Sarmiento 81a3e91d6e Video 76
Se hizo toda la parte del Unit Of Work y estoy a punto de terminar la de tests unitarios
2024-02-28 22:40:34 +01:00

17 lines
527 B
C#

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; }
}
}