roadie/Roadie.Api.Library/Data/ScanHistory.cs
2019-07-03 11:21:29 -05:00

33 lines
No EOL
923 B
C#

using Roadie.Library.Enums;
using Roadie.Library.Identity;
using System.ComponentModel.DataAnnotations.Schema;
namespace Roadie.Library.Data
{
[Table("scanHistory")]
public class ScanHistory : EntityBase
{
[Column("forArtistId")] public int? ForArtistId { get; set; }
[Column("forReleaseId")] public int? ForReleaseId { get; set; }
[NotMapped] public new bool? IsLocked { get; set; }
[Column("newArtists")] public int? NewArtists { get; set; }
[Column("newReleases")] public int? NewReleases { get; set; }
[Column("newTracks")] public int? NewTracks { get; set; }
[Column("timeSpanInSeconds")] public int TimeSpanInSeconds { get; set; }
public ApplicationUser User { get; set; }
[Column("userId")] public int UserId { get; set; }
public ScanHistory()
{
Status = Statuses.Complete;
}
}
}