mirror of
https://github.com/sphildreth/roadie
synced 2024-11-10 14:54:11 +00:00
24 lines
No EOL
600 B
C#
24 lines
No EOL
600 B
C#
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace Roadie.Library.Data
|
|
{
|
|
[Table("collectionrelease")]
|
|
public partial class CollectionRelease : EntityBase
|
|
{
|
|
public Collection Collection { get; set; }
|
|
|
|
[Column("collectionId")]
|
|
[Required]
|
|
public int CollectionId { get; set; }
|
|
|
|
[Column("listNumber")]
|
|
public int ListNumber { get; set; }
|
|
|
|
public Release Release { get; set; }
|
|
|
|
[Column("releaseId")]
|
|
[Required]
|
|
public int ReleaseId { get; set; }
|
|
}
|
|
} |