13 lines
258 B
C#
13 lines
258 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Web;
|
|||
|
|
|||
|
namespace MvcMusicStore.Models
|
|||
|
{
|
|||
|
public class Artist
|
|||
|
{
|
|||
|
public virtual int ArtistId { get; set; }
|
|||
|
public virtual string Name { get; set; }
|
|||
|
}
|
|||
|
}
|