roadie/Roadie.Api.Library/Models/Genre.cs
2018-12-26 13:39:13 -06:00

12 lines
No EOL
236 B
C#

using System;
using System.ComponentModel.DataAnnotations;
namespace Roadie.Library.Models
{
[Serializable]
public class Genre : EntityModelBase
{
[MaxLength(100)]
public string Name { get; set; }
}
}