forked from liza/Workshoppa
11 lines
336 B
C#
11 lines
336 B
C#
|
namespace Workshoppa.GameData;
|
|||
|
|
|||
|
internal sealed class WorkshopCraftItem
|
|||
|
{
|
|||
|
public required uint ItemId { get; init; }
|
|||
|
public required string Name { get; init; }
|
|||
|
public required int SetQuantity { get; init; }
|
|||
|
public required int SetsRequired { get; init; }
|
|||
|
public int TotalQuantity => SetQuantity * SetsRequired;
|
|||
|
}
|