2018-02-20 06:20:53 +00:00
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
2018-02-18 19:38:28 +00:00
|
|
|
|
|
|
|
|
|
namespace YTManager.Models
|
|
|
|
|
{
|
|
|
|
|
public class Tag
|
|
|
|
|
{
|
|
|
|
|
// Uniquie ID for this media type
|
|
|
|
|
[Key]
|
2018-02-20 04:57:14 +00:00
|
|
|
|
public long PrimaryKey { get; set; }
|
2018-02-18 19:38:28 +00:00
|
|
|
|
|
|
|
|
|
// Tag Name.
|
|
|
|
|
[Required]
|
|
|
|
|
public string Name { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|