Files
Disco/Disco.Models/Services/Jobs/JobLists/JobLocationReference.cs
2014-02-18 17:00:14 +11:00

15 lines
335 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Disco.Models.Services.Jobs.JobLists
{
public class JobLocationReference
{
public string Location { get; set; }
public List<JobTableStatusItemModel> References { get; set; }
}
}