Added refreshed since for channels

This commit is contained in:
2018-02-20 01:16:30 -05:00
parent 66a9c1edb4
commit e11ddfa72c
6 changed files with 156 additions and 9 deletions

View File

@ -30,6 +30,10 @@ namespace YTManager.Models {
[Required]
public DateTime AddedtoDB { get; set; }
//! Last time this channel was updated.
[Required]
public DateTime Refreshed { get; set; }
// Videos this channel has.
public List<Video> Videos { get; set; }
}