move project
This commit is contained in:
10
db/models/Tag.cs
Normal file
10
db/models/Tag.cs
Normal 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; } = [];
|
||||
}
|
Reference in New Issue
Block a user