Skip to content
Permalink
fa73a90924
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
20 lines (19 sloc) 600 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; } //Should this be album id to match the sql?
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; }
}
}