forked from aly/qstbak
12 lines
248 B
C#
12 lines
248 B
C#
namespace LLib.Shop.Model;
|
|
|
|
public sealed class GrandCompanyItem
|
|
{
|
|
public required int Index { get; init; }
|
|
|
|
public required uint ItemId { get; init; }
|
|
|
|
public required uint IconId { get; init; }
|
|
|
|
public required uint SealCost { get; init; }
|
|
}
|