All checks were successful
Deploy Promiscuity Auth API / deploy (push) Successful in 47s
Deploy Promiscuity Character API / deploy (push) Successful in 44s
Deploy Promiscuity Inventory API / deploy (push) Successful in 58s
Deploy Promiscuity Locations API / deploy (push) Successful in 58s
k8s smoke test / test (push) Successful in 9s
27 lines
686 B
C#
27 lines
686 B
C#
namespace LocationsApi.Models;
|
|
|
|
public class InteractLocationObjectResponse
|
|
{
|
|
public string LocationId { get; set; } = string.Empty;
|
|
|
|
public string CharacterId { get; set; } = string.Empty;
|
|
|
|
public string ObjectId { get; set; } = string.Empty;
|
|
|
|
public string ObjectType { get; set; } = string.Empty;
|
|
|
|
public string ItemKey { get; set; } = string.Empty;
|
|
|
|
public int QuantityGranted { get; set; }
|
|
|
|
public int CharacterGrantedQuantity { get; set; }
|
|
|
|
public int FloorGrantedQuantity { get; set; }
|
|
|
|
public int RemainingQuantity { get; set; }
|
|
|
|
public bool Consumed { get; set; }
|
|
|
|
public string InventoryResponseJson { get; set; } = string.Empty;
|
|
}
|