20 lines
No EOL
458 B
C#
20 lines
No EOL
458 B
C#
using System;
|
|
using ShiroginSDK.Runtime.Modules.Data.Scripts.Enums;
|
|
|
|
namespace ShiroginSDK.Runtime.Modules.Data.Scripts.Models
|
|
{
|
|
[Serializable]
|
|
public class OwnedItem
|
|
{
|
|
public string ItemId;
|
|
public ItemType ItemType;
|
|
public int Quantity;
|
|
|
|
public OwnedItem(string id, ItemType type, int quantity = 1)
|
|
{
|
|
ItemId = id;
|
|
ItemType = type;
|
|
Quantity = quantity;
|
|
}
|
|
}
|
|
} |