mirror of
https://github.com/sphildreth/roadie
synced 2024-11-10 06:44:12 +00:00
19 lines
435 B
C#
19 lines
435 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.ComponentModel.DataAnnotations;
|
|||
|
using System.ComponentModel.DataAnnotations.Schema;
|
|||
|
using System.Text;
|
|||
|
|
|||
|
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; }
|
|||
|
}
|
|||
|
}
|