Skip to content

Instantly share code, notes, and snippets.

@teomanofficial
Created November 16, 2023 18:02
Show Gist options
  • Save teomanofficial/a7b4366fc9dd6129f2edc778d116eb31 to your computer and use it in GitHub Desktop.
Save teomanofficial/a7b4366fc9dd6129f2edc778d116eb31 to your computer and use it in GitHub Desktop.
Angular NGXS - Products State Actions
import { GetProductsRequestModel } from "@store/products/models/get-products-request.model";
export class GetProducts {
static readonly type = '[Products] Get Products';
constructor(public request: GetProductsRequestModel) {
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment