12 lines
186 B
C#
12 lines
186 B
C#
using System;
|
|
|
|
namespace Unity.Services.Analytics
|
|
{
|
|
public struct Item
|
|
{
|
|
public string ItemName;
|
|
public string ItemType;
|
|
public Int64 ItemAmount;
|
|
}
|
|
}
|