16 lines
296 B
C#
16 lines
296 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace YTManager.Models
|
|
{
|
|
public class Tag
|
|
{
|
|
// Uniquie ID for this media type
|
|
[Key]
|
|
public long PrimaryKey { get; set; }
|
|
|
|
// Tag Name.
|
|
[Required]
|
|
public string Name { get; set; }
|
|
}
|
|
}
|