Files
mixtape/zero.Core/Entities/PreviewModel.cs
T

16 lines
261 B
C#
Raw Normal View History

2020-06-05 15:34:13 +02:00
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; }
}
}