18 lines
531 B
C#
Executable File
18 lines
531 B
C#
Executable File
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace ksBroadcastingNetwork.Structs
|
|
{
|
|
public struct TrackData
|
|
{
|
|
public string TrackName { get; internal set; }
|
|
public int TrackId { get; internal set; }
|
|
public float TrackMeters { get; internal set; }
|
|
public Dictionary<string, List<string>> CameraSets { get; internal set; }
|
|
public IEnumerable<string> HUDPages { get; internal set; }
|
|
}
|
|
}
|