mirror of
https://github.com/sphildreth/roadie
synced 2024-11-26 22:20:21 +00:00
28 lines
843 B
C#
28 lines
843 B
C#
using Roadie.Library.Enums;
|
|
using Roadie.Library.Identity;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace Roadie.Library.Data
|
|
{
|
|
[Table("collectionMissing")]
|
|
public partial class CollectionMissing
|
|
{
|
|
[Column("id")]
|
|
[Key]
|
|
[DatabaseGenerated(DatabaseGeneratedOption.Identity)]
|
|
public int Id { get; set; }
|
|
[Column("collectionId")]
|
|
public int CollectionId { get; set; }
|
|
[Column("isArtistFound")]
|
|
public bool IsArtistFound { get; set; }
|
|
[Column("position")]
|
|
public int Position { get; set; }
|
|
[Column("artist")]
|
|
[MaxLength(1000)]
|
|
public string Artist { get; set; }
|
|
[Column("release")]
|
|
[MaxLength(1000)]
|
|
public string Release { get; set; }
|
|
}
|
|
}
|