Files
Disco/Disco.Models/Services/Jobs/JobLists/JobLocationReference.cs
T
2024-12-14 16:55:37 +11:00

11 lines
253 B
C#

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