18 lines
497 B
C#
Executable File
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; }
|
|
}
|
|
}
|