Skip to content
Permalink
1d5d09bae4
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
22 lines (21 sloc) 639 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; }
public string url { get; set; }
}
}