Newer
Older
import { ListResource } from '@goofy-client/tech-shared';
import { Resource } from '@ngxp/rest';
export interface CreateCommand {

OZGCloud
committed
order: any
}
export interface Command extends CreateCommand {
createdAt: Date,
createdByName: string,

OZGCloud
committed
status: CommandStatus,
}

OZGCloud
committed
export interface CommandResource extends Command, Resource { }
export interface CommandListResource extends ListResource { }

OZGCloud
committed
export enum CommandStatus {

OZGCloud
committed
FINISHED = 'FINISHED',
PENDING = 'PENDING',
REVOKED = 'REVOKED'