mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-06-02 07:59:01 +00:00
7 lines
174 B
TypeScript
7 lines
174 B
TypeScript
import { ApiProperty } from '@nestjs/swagger';
|
|
|
|
export class AuthMetaResponseDto {
|
|
@ApiProperty({ description: 'Whether signup is disabled' })
|
|
signupDisabled: boolean;
|
|
}
|