14 lines
343 B
C#
14 lines
343 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
|
|
namespace MvcMusicStore.Models
|
|
{
|
|
public class AlbumEditViewModel
|
|
{
|
|
public Album AlbumToEdit { get; set; }
|
|
public System.Web.Mvc.SelectList Genres { get; set; }
|
|
public System.Web.Mvc.SelectList Artists { get; set; }
|
|
}
|
|
} |