finished off helpers, added few more types (might not be used)
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
using System.Text.Json.Serialization;
|
||||
using Core.Models.Eft.Common.Tables;
|
||||
|
||||
namespace Core.Models.Eft.Inventory;
|
||||
|
||||
public class AddItemsDirectRequest
|
||||
{
|
||||
/// Item and child mods to add to player inventory
|
||||
[JsonPropertyName("itemsWithModsToAdd")]
|
||||
public List<List<Item>>? ItemsWithModsToAdd { get; set; }
|
||||
|
||||
[JsonPropertyName("foundInRaid")]
|
||||
public bool? FoundInRaid { get; set; }
|
||||
|
||||
/// Runs after EACH item with children is added
|
||||
[JsonPropertyName("callback")]
|
||||
public Action<int>? Callback { get; set; }
|
||||
|
||||
/// Should sorting table be used when no space found in stash
|
||||
[JsonPropertyName("useSortingTable")]
|
||||
public bool? UseSortingTable { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user