NLDClient-yudde/ProjectNLD/Assets/Code/Scripts/Gameplay/UI/Mail/MailEventUse.cs

16 lines
253 B
C#
Raw Normal View History

2024-09-25 14:24:15 +08:00
using System.Collections.Generic;
namespace Gameplay
2023-12-12 19:35:47 +08:00
{
public class MailEventUse
{
2024-09-25 14:24:15 +08:00
public List<ulong> listId;
2023-12-13 16:51:07 +08:00
public ItemCounts itemList;
2024-09-25 14:24:15 +08:00
public MailEventUse()
{
listId = new();
}
2023-12-12 19:35:47 +08:00
}
}