Huge API rewrite

This commit is contained in:
2018-02-24 01:10:12 -05:00
parent a37fe30b6f
commit 038d363b00
16 changed files with 472 additions and 77 deletions

View File

@ -34,10 +34,10 @@ namespace YTManager.Models {
// What channel this video comes from.
[Required]
public Channel channel;
public Channel Channel { get; set; }
// Tag this video applies to.
[Required]
public List<Tag> Tags;
public List<Tag> Tags { get; set; }
}
}