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

88 lines
No EOL
2.2 KiB
C#

using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace Roadie.Library.Data
{
[Table("track")]
public partial class Track : EntityBase
{
[Column("alternateNames", TypeName = "text")]
[MaxLength(65535)]
public string AlternateNames { get; set; }
[Column("amgId")]
[MaxLength(50)]
public string AmgId { get; set; }
public Artist Artist { get; set; }
[Column("artistId")]
public int? ArtistId { get; set; }
[Column("duration")]
public int Duration { get; set; }
[Column("fileName")]
[MaxLength(500)]
public string FileName { get; set; }
[Column("filePath")]
[MaxLength(1000)]
public string FilePath { get; set; }
[Column("fileSize")]
public int FileSize { get; set; }
[Column("hash")]
[MaxLength(32)]
public string Hash { get; set; }
[Column("isrc")]
[MaxLength(15)]
public string ISRC { get; set; }
[Column("lastFMId")]
[MaxLength(50)]
public string LastFMId { get; set; }
[Column("lastPlayed")]
public DateTime? LastPlayed { get; set; }
[Column("musicBrainzId")]
[MaxLength(100)]
public string MusicBrainzId { get; set; }
[Column("partTitles", TypeName = "text")]
[MaxLength(65535)]
public string PartTitles { get; set; }
[Column("playedCount")]
public int PlayedCount { get; set; }
[Column("rating")]
public short Rating { get; set; }
public ReleaseMedia ReleaseMedia { get; set; }
[Column("releaseMediaId")]
public int ReleaseMediaId { get; set; }
[Column("spotifyId")]
[MaxLength(100)]
public string SpotifyId { get; set; }
[Column("tags", TypeName = "text")]
[MaxLength(65535)]
public string Tags { get; set; }
[MaxLength(250)]
[Column("title")]
[Required]
public string Title { get; set; }
[Column("trackNumber")]
[Required]
public short TrackNumber { get; set; }
}
}