Jack 4d94fbf54f
All checks were successful
Build and push image / Build (push) Successful in 49s
i live in spain but the S is silent
2023-09-28 00:53:27 +01:00

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; }
}
}