19 lines
563 B
C#
19 lines
563 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Web;
|
|||
|
|
|||
|
namespace MvcMusicStore.Models
|
|||
|
{
|
|||
|
public class Album
|
|||
|
{
|
|||
|
public virtual int AlbumId { get; set; }
|
|||
|
public virtual int GenreId { get; set; }
|
|||
|
public virtual int ArtistId { get; set; }
|
|||
|
public virtual string Title { get; set; }
|
|||
|
public virtual decimal Price { get; set; }
|
|||
|
public virtual string AlbumArtUrl { get; set; }
|
|||
|
public virtual Genre Genre { get; set; }
|
|||
|
public virtual Artist Artist { get; set; }
|
|||
|
}
|
|||
|
}
|