Skip to content
Permalink
57b6cbed1a
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
23 lines (22 sloc) 676 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; }
public int qty { get; set; }
}
}