namespace LocationsApi.Models; public class GatherResourceResponse { public string LocationId { get; set; } = string.Empty; public string CharacterId { get; set; } = string.Empty; public string ResourceKey { get; set; } = string.Empty; public int QuantityGranted { get; set; } public int RemainingQuantity { get; set; } public string InventoryResponseJson { get; set; } = string.Empty; }