Files
mixtape/zero.Api/Models/_new/PickerPreviewModel.cs
T

21 lines
454 B
C#
Raw Normal View History

2021-11-29 18:25:50 +01:00
namespace zero.Api.Models;
public class PickerPreviewModel
{
public string Id { get; set; }
public string Icon { get; set; }
public string Text { get; set; }
public string Name { get; set; }
//public static PickerPreviewModel NotFound(string id) => new()
//{
// HasError = true,
// Icon = "fth-alert-circle color-red",
// Id = id,
// Name = "@errors.preview.notfound",
// Text = "@errors.preview.notfound_text"
//};
}