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 VideoTags { get; set; } = []; }