Skip to content
Permalink
8d7ac367af
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
21 lines (20 sloc) 599 Bytes
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace TeamDBAwesome.Models
{
public class Track
{
public int TrackId { get; set; }
public string TrackName { get; set; }
public string AlbumTitle { get; set; }
public string MediaType { get; set; }
public string Genre { get; set; }
public string Composer { get; set; }
public int Milliseconds { get; set; }
public int Bytes { get; set; }
public float UnitPrice { get; set; }
public string artist { get; set; }
}
}