Files
prefab-page-detail/Prefab.Web.Client/Models/CategoryListItemModel.cs
2025-10-27 17:39:18 -04:00

11 lines
223 B
C#

namespace Prefab.Web.Client.Models;
public class CategoryListItemModel
{
public Guid Id { get; set; }
public string Name { get; set; } = string.Empty;
public string ParentName { get; set; } = string.Empty;
}