roadie/Roadie.Api.Library/Data/Label.cs
2019-06-28 16:24:32 -05:00

47 lines
No EOL
1.3 KiB
C#

using Roadie.Library.Enums;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace Roadie.Library.Data
{
[Table("label")]
public partial class Label : BeginAndEndNamedEntityBase
{
[Column("discogsId")]
[MaxLength(50)]
public string DiscogsId { get; set; }
[Column("imageUrl")]
[MaxLength(500)]
public string ImageUrl { get; set; }
[Column("musicBrainzId")]
[MaxLength(100)]
public string MusicBrainzId { get; set; }
[Column("profile", TypeName = "text")]
[MaxLength(65535)]
public string Profile { get; set; }
[Column("artistCount")]
public int? ArtistCount { get; set; }
[Column("releaseCount")]
public int? ReleaseCount { get; set; }
[Column("trackCount")]
public int? TrackCount { get; set; }
public ICollection<ReleaseLabel> ReleaseLabels { get; set; }
public ICollection<Comment> Comments { get; set; }
public Label()
{
this.ReleaseLabels = new HashSet<ReleaseLabel>();
this.Comments = new HashSet<Comment>();
this.Status = Statuses.Ok;
}
}
}