13 lines
289 B
C#
13 lines
289 B
C#
namespace Prefab.Web.Client.ViewModels.Catalog;
|
|
|
|
public sealed class CategoryCardModel
|
|
{
|
|
public string Title { get; set; } = string.Empty;
|
|
|
|
public string Url { get; set; } = string.Empty;
|
|
|
|
public string? ImageUrl { get; set; }
|
|
|
|
public string? SecondaryText { get; set; }
|
|
}
|