mirror of
https://github.com/sphildreth/roadie
synced 2024-11-12 23:47:07 +00:00
12 lines
No EOL
236 B
C#
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; }
|
|
}
|
|
} |