mirror of
https://github.com/sphildreth/roadie
synced 2024-11-22 20:23:16 +00:00
54 lines
No EOL
1.5 KiB
C#
54 lines
No EOL
1.5 KiB
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
|
|
{
|
|
[InverseProperty("Genre")]
|
|
public virtual ICollection<ArtistGenre> Artists { get; set; }
|
|
|
|
[InverseProperty("Genre")]
|
|
public virtual ICollection<Comment> Comments { get; set; }
|
|
|
|
[Column("name")]
|
|
[MaxLength(100)]
|
|
[Required]
|
|
public string Name { get; set; }
|
|
|
|
[Column("sortName")]
|
|
[MaxLength(100)]
|
|
public string SortName { get; set; }
|
|
|
|
public string SortNameValue => string.IsNullOrEmpty(SortName) ? Name : SortName;
|
|
|
|
[Column("description")]
|
|
[MaxLength(4000)]
|
|
public string Description { get; set; }
|
|
|
|
[Column("alternateNames", TypeName = "text")]
|
|
[MaxLength(65535)]
|
|
public string AlternateNames { get; set; }
|
|
|
|
[Column("tags", TypeName = "text")]
|
|
[MaxLength(65535)]
|
|
public string Tags { get; set; }
|
|
|
|
[Column("normalizedName")]
|
|
[MaxLength(100)]
|
|
public string NormalizedName { get; set; }
|
|
|
|
[InverseProperty("Genre")]
|
|
public virtual ICollection<ReleaseGenre> Releases { get; set; }
|
|
|
|
public Genre()
|
|
{
|
|
Releases = new HashSet<ReleaseGenre>();
|
|
Artists = new HashSet<ArtistGenre>();
|
|
Comments = new HashSet<Comment>();
|
|
Status = Enums.Statuses.Ok;
|
|
}
|
|
}
|
|
} |