#nullable enable
using Gpm.Ui;
using System;
namespace UVC.UI.List
{
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 Action? OnClickAction;
///
/// 화면에 드롭 시 호출될 액션입니다.
///
public Action? OnDropAction;
}
}