mirror of
https://github.com/Unleash/unleash.git
synced 2025-02-23 00:22:19 +01:00
8 lines
153 B
TypeScript
8 lines
153 B
TypeScript
|
export interface IReleasePlanTemplate {
|
||
|
id: string;
|
||
|
name: string;
|
||
|
description: string;
|
||
|
createdAt: string;
|
||
|
createdByUserId: number;
|
||
|
}
|