1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-02-23 00:22:19 +01:00
unleash.unleash/frontend/src/interfaces/releasePlans.ts

29 lines
578 B
TypeScript
Raw Normal View History

export interface IReleasePlanTemplate {
id: string;
name: string;
description: string;
createdAt: string;
createdByUserId: number;
}
export interface IReleasePlanTemplate {
id: string;
name: string;
description: string;
createdAt: string;
createdByUserId: number;
milestones: IReleasePlanMilestone[];
}
export interface IReleasePlanMilestone {
id: string;
name: string;
}
export interface IReleasePlanTemplatePayload {
id?: string;
name: string;
description: string;
milestones?: IReleasePlanMilestone[];
}