mirror of
https://github.com/sphildreth/roadie
synced 2024-11-14 00:17:12 +00:00
33 lines
No EOL
923 B
C#
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;
|
|
}
|
|
}
|
|
} |