using System; namespace BootCamp.Service.Contract { /// /// Product item model object. /// public class AlbumModel : ProductModel { /// /// Album artist. /// public string Artist { get; set; } } }