unclear what this was, saving this so I can wipe the local version of this project
This commit is contained in:
23
Models/UserTag.cs
Normal file
23
Models/UserTag.cs
Normal file
@ -0,0 +1,23 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
|
||||
namespace YTManager.Models {
|
||||
public class UserTag {
|
||||
// Uniquie ID for this media type
|
||||
[Key]
|
||||
public long PrimaryKey { get; set; }
|
||||
|
||||
// Title of the media
|
||||
[Required]
|
||||
public string Title { get; set; }
|
||||
|
||||
// Short description of the media
|
||||
[Required]
|
||||
public string Description { get; set; }
|
||||
|
||||
// Channels which this tag represents.
|
||||
[Required]
|
||||
public List<Channel> Channels { get; set; }
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user