namespace UnityEditor.AddressableAssets.Settings { /// /// Stores information about a group template. /// public interface IGroupTemplate { /// /// The name of the group, used for the menu and newly created group name. /// string Name { get; } /// /// Description of the Template, to be used as a tooltip /// string Description { get; } } }