Files
mixtape/zero.Core/Entities/PreviewModel.cs
T
2020-11-24 12:02:03 +01:00

16 lines
261 B
C#

namespace zero.Core.Entities
{
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; }
}
}