BattleLogEntryDto.cs
1 namespace GUNRPG.Application.Dtos; 2 3 /// <summary> 4 /// Represents a single battle log entry for display in the UI. 5 /// </summary> 6 public sealed class BattleLogEntryDto 7 { 8 public string EventType { get; init; } = ""; 9 public long TimeMs { get; init; } 10 public string Message { get; init; } = ""; 11 public string? ActorName { get; init; } 12 }