payment
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
import { CreateRestaurantPaymentMethodInput } from './create-restaurant-payment-method.input';
|
||||
import { InputType, Field, PartialType } from '@nestjs/graphql';
|
||||
|
||||
@InputType()
|
||||
export class UpdateRestaurantPaymentMethodInput extends PartialType(CreateRestaurantPaymentMethodInput) {
|
||||
@Field()
|
||||
id!: string;
|
||||
}
|
||||
Reference in New Issue
Block a user