move project

This commit is contained in:
2025-07-27 00:33:05 +02:00
parent 4544be2999
commit 5f8fb01a9f
100 changed files with 651 additions and 406 deletions

10
db/models/Tag.cs Normal file
View File

@@ -0,0 +1,10 @@
namespace Db.Models;
public class Tag
{
// We use the name of the tag as the Id to ensure uniqueness
public required string Name { get; set; }
public ICollection<VideoTag> VideoTags { get; set; } = [];
}