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