unclear what this was, saving this so I can wipe the local version of this project

This commit is contained in:
2025-06-12 16:46:52 -04:00
parent 312dbdd8a5
commit c329b81cfd
3 changed files with 27 additions and 1 deletions

23
Models/UserTag.cs Normal file
View 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; }
}
}