PetStateDto.cs
1 namespace GUNRPG.Application.Dtos; 2 3 public sealed class PetStateDto 4 { 5 public float Health { get; init; } 6 public float Fatigue { get; init; } 7 public float Injury { get; init; } 8 public float Stress { get; init; } 9 public float Morale { get; init; } 10 public float Hunger { get; init; } 11 public float Hydration { get; init; } 12 public DateTimeOffset LastUpdated { get; init; } 13 }