mirror of
https://github.com/unity-atoms/unity-atoms.git
synced 2025-01-23 16:48:23 -05:00
21 lines
418 B
C#
21 lines
418 B
C#
using System;
|
|
|
|
namespace UnityAtoms
|
|
{
|
|
/// <summary>
|
|
/// Model for one icon assignment setting.
|
|
/// </summary>
|
|
[Serializable]
|
|
public class IconAssigmentSetting
|
|
{
|
|
public IconAssigmentSetting(string assetPath, string iconPath)
|
|
{
|
|
AssetPath = assetPath;
|
|
IconPath = iconPath;
|
|
}
|
|
|
|
public string AssetPath;
|
|
public string IconPath;
|
|
}
|
|
}
|