UNPKG

marsol

Version:
32 lines (31 loc) 535 B
/** * * @export * @interface CreateProjectResponseDto */ export interface CreateProjectResponseDto { /** * * @type {string} * @memberof CreateProjectResponseDto */ id: string; /** * * @type {string} * @memberof CreateProjectResponseDto */ name: string; /** * * @type {string} * @memberof CreateProjectResponseDto */ accountId: string; /** * * @type {string} * @memberof CreateProjectResponseDto */ createdAt: string; }