Files
components/LiteCharms.Features/Products/Queries/GetProductsQuery.cs
T
2026-05-03 16:10:27 +02:00

9 lines
196 B
C#

using LiteCharms.Models;
namespace LiteCharms.Features.Products.Queries;
public class GetProductsQuery : IRequest<Result<Product[]>>
{
public static GetProductsQuery Create() => new();
}