mirror of
https://github.com/sphildreth/roadie
synced 2024-12-03 09:29:13 +00:00
28 lines
No EOL
750 B
C#
28 lines
No EOL
750 B
C#
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; }
|
|
|
|
public List<ReleaseLabel> ReleaseLabels { get; set; }
|
|
}
|
|
} |