using System;
namespace SampleReport.Reports
{
///
/// Represents cell data for a Sprite that is included in multiple Sprite Atlases, used in the report UI.
///
[Serializable]
record SpriteInMultipleAtlasCellData
{
///
/// The display name of the Sprite or Sprite Atlas.
///
public string name;
///
/// The icon class name for the UI representation (e.g., "sprite-icon" or "spriteatlas-icon").
///
public string icon;
///
/// The global object ID string for the Sprite or Sprite Atlas.
///
public string objectGlobalID;
///
/// The number of child items (e.g., the count of Sprite Atlases containing the Sprite).
///
public string childCount;
}
}