public class Video
{
[Key]
public int Id { get; set; }
[ForeignKey("User")]
public int UserID { get; set; }
public string Title { get; set; }
public string Description { get; set; }
public string File { get; set; }
public string Hash { get; set; }
public int CreatedAt { get; set; }
public int Views { get; set; }
public virtual User User { get; set; }
}