#nullable enable
using Gpm.Ui;
namespace UVC.UI.List
{
///
/// PrefabGrid 아이템 데이터.
/// 이벤트는 PrefabGrid에서 중앙 관리됩니다.
///
public class PrefabGridItemData : InfiniteScrollData
{
public string Id = string.Empty;
///
/// 설명
///
public string ItemName = string.Empty;
///
/// 이미지 프리팹 경로
///
public string ImagePrefabPath = string.Empty;
///
/// 객체 프리팹 경로
///
public string ObjectPrefabPath = string.Empty;
///
/// 임의의 태그/키 값.
///
public string? Tag;
}
}