15 lines
368 B
C#
15 lines
368 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
|
|
namespace MvcMusicStore.Models
|
|
{
|
|
public class Genre
|
|
{
|
|
public virtual int GenreId { get; set; }
|
|
public virtual string Name { get; set; }
|
|
public virtual string Description { get; set; }
|
|
public virtual List<Album> Albums { get; set; }
|
|
}
|
|
} |