revert typing changes
This commit is contained in:
@@ -17,7 +17,7 @@ public record AddItemDirectRequest
|
||||
public bool? FoundInRaid { get; set; }
|
||||
|
||||
[JsonPropertyName("callback")]
|
||||
public Action<double, ProcessBuyTradeRequestData?, string?, PmcData?>? Callback { get; set; }
|
||||
public Action<double>? Callback { get; set; }
|
||||
|
||||
[JsonPropertyName("useSortingTable")]
|
||||
public bool? UseSortingTable { get; set; }
|
||||
|
||||
@@ -16,7 +16,7 @@ public record AddItemsDirectRequest
|
||||
|
||||
/// Runs after EACH item with children is added
|
||||
[JsonPropertyName("callback")]
|
||||
public Action<double, ProcessBuyTradeRequestData, string, PmcData>? Callback { get; set; }
|
||||
public Action<double>? Callback { get; set; }
|
||||
|
||||
/// Should sorting table be used when no space found in stash
|
||||
[JsonPropertyName("useSortingTable")]
|
||||
|
||||
@@ -182,7 +182,7 @@ public record Product
|
||||
public string? SlotId { get; set; }
|
||||
|
||||
[JsonPropertyName("location")]
|
||||
public object? Location { get; set; }
|
||||
public ItemLocation? Location { get; set; }
|
||||
|
||||
[JsonPropertyName("upd")]
|
||||
public Upd? Upd { get; set; }
|
||||
|
||||
Reference in New Issue
Block a user