roadie/RoadieLibrary/Data/Genre.cs
Steven Hildreth f8fb347f95 WIP
2018-11-02 16:11:11 -05:00

16 lines
No EOL
401 B
C#

using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace Roadie.Library.Data
{
[Table("genre")]
public partial class Genre : EntityBase
{
[Column("name")]
[MaxLength(100)]
public string Name { get; set; }
public ICollection<ReleaseGenre> Releases { get; set; }
}
}