Added duration and tags to videos

This commit is contained in:
2018-02-28 18:33:40 -05:00
parent e140cae317
commit ccef5fee0c
7 changed files with 192 additions and 10 deletions

View File

@ -32,6 +32,10 @@ namespace YTManager.Models {
[Required]
public DateTime AddedtoDB { get; set; }
// How long the video is
[Required]
public TimeSpan Duration { get; set; }
// What channel this video comes from.
[Required]
public Channel Channel { get; set; }