mirror of
https://github.com/sphildreth/roadie
synced 2024-11-23 04:33:16 +00:00
26 lines
No EOL
617 B
C#
26 lines
No EOL
617 B
C#
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace Roadie.Library.Data
|
|
{
|
|
[Table("artistGenreTable")]
|
|
public partial class ArtistGenre
|
|
{
|
|
public Artist Artist { get; set; }
|
|
|
|
[Column("artistId")]
|
|
[Required]
|
|
public int ArtistId { get; set; }
|
|
|
|
public Genre Genre { get; set; }
|
|
|
|
[Column("genreId")]
|
|
[Required]
|
|
public int? GenreId { get; set; }
|
|
|
|
[Column("id")]
|
|
[Key]
|
|
[DatabaseGenerated(DatabaseGeneratedOption.Identity)]
|
|
public int Id { get; set; }
|
|
}
|
|
} |