10 lines
218 B
C#
10 lines
218 B
C#
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; } = [];
|
|
} |