Files
mixtape/zero.Backoffice/Models/PickerPreviewModel.cs
T
2021-11-27 16:33:05 +01:00

14 lines
253 B
C#

namespace zero.Backoffice.Models;
public struct PickerPreviewModel
{
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; }
}