2023-10-01 20:50:21 +00:00
|
|
|
|
namespace Workshoppa.GameData;
|
|
|
|
|
|
|
|
|
|
internal sealed class WorkshopCraftItem
|
|
|
|
|
{
|
|
|
|
|
public required uint ItemId { get; init; }
|
|
|
|
|
public required string Name { get; init; }
|
2023-11-01 09:51:53 +00:00
|
|
|
|
public required ushort IconId { get; init; }
|
2023-10-01 20:50:21 +00:00
|
|
|
|
public required int SetQuantity { get; init; }
|
|
|
|
|
public required int SetsRequired { get; init; }
|
|
|
|
|
public int TotalQuantity => SetQuantity * SetsRequired;
|
|
|
|
|
}
|