Files
mixtape/zero.Backoffice/Models/PreviewModel.cs
T

14 lines
246 B
C#
Raw Normal View History

2021-11-23 15:43:21 +01:00
namespace zero.Backoffice.Models;
public class PreviewModel
{
public string Id { get; set; }
public string Icon { get; set; }
public string Text { get; set; }
public string Name { get; set; }
public bool HasError { get; set; }
}