11 lines
314 B
C#
11 lines
314 B
C#
namespace ScoreboardApi.Objects
|
|
{
|
|
public class Event
|
|
{
|
|
public int Id { get; set; }
|
|
public EventCategory Category { get; set; }
|
|
public EventType EventType { get; set; }
|
|
public DateTimeOffset TimeStamp { get; set; }
|
|
public int Points { get; set; }
|
|
}
|
|
} |