23 lines
598 B
C#
23 lines
598 B
C#
using System.Collections.Generic;
|
|
using Dalamud.Configuration;
|
|
|
|
namespace Deliveroo;
|
|
|
|
internal sealed class Configuration : IPluginConfiguration
|
|
{
|
|
public int Version { get; set; } = 1;
|
|
|
|
public List<uint> ItemsAvailableForPurchase { get; set; } = new();
|
|
public uint SelectedPurchaseItemId { get; set; } = 0;
|
|
|
|
public int ReservedSealCount { get; set; } = 0;
|
|
public ItemFilterType ItemFilter { get; set; } = ItemFilterType.HideGearSetItems;
|
|
|
|
public enum ItemFilterType
|
|
{
|
|
ShowAllItems = 0,
|
|
HideGearSetItems = 1,
|
|
HideArmouryChestItems = 2,
|
|
}
|
|
}
|