18 lines
361 B
C#
18 lines
361 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace Sockeye.Models
|
|
{
|
|
|
|
public class Tag
|
|
{
|
|
public long Id { get; set; }
|
|
public uint Concurrency { get; set; }
|
|
|
|
[Required, MaxLength(255)]
|
|
public string Name { get; set; }//max 255 characters
|
|
|
|
public long RefCount { get; set; }
|
|
|
|
}
|
|
}
|