Files
Umbraco-CMS/src/Umbraco.Core/Models/IconModel.cs
Sebastiaan Janssen fe3f604122 Move the IIconService and IconModel to the Umbraco.Core project
See issue #8919

(cherry picked from commit 0531fce9e2)
2020-09-23 16:21:34 +02:00

9 lines
163 B
C#

namespace Umbraco.Core.Models
{
public class IconModel
{
public string Name { get; set; }
public string SvgString { get; set; }
}
}