Files

7 lines
126 B
TypeScript

export interface Unit {
id: number;
name: string;
description?: string;
active: boolean;
color?: string;
}