2023-12-04 06:41:36 +00:00
|
|
|
import { IIssueFilterOptions } from "./view-props";
|
|
|
|
|
|
|
|
export interface IProjectView {
|
2023-03-15 05:30:05 +00:00
|
|
|
id: string;
|
|
|
|
access: string;
|
|
|
|
created_at: Date;
|
|
|
|
updated_at: Date;
|
2023-03-28 11:18:46 +00:00
|
|
|
is_favorite: boolean;
|
2023-03-15 05:30:05 +00:00
|
|
|
created_by: string;
|
|
|
|
updated_by: string;
|
|
|
|
name: string;
|
|
|
|
description: string;
|
2023-12-04 06:41:36 +00:00
|
|
|
query: IIssueFilterOptions;
|
|
|
|
query_data: IIssueFilterOptions;
|
2023-03-15 05:30:05 +00:00
|
|
|
project: string;
|
|
|
|
workspace: string;
|
|
|
|
}
|