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
497 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 BroadcastingEvent
{
public BroadcastingCarEventType Type { get; internal set; }
public string Msg { get; internal set; }
public int TimeMs { get; internal set; }
public int CarId { get; internal set; }
public CarInfo CarData { get; internal set; }
}
}