6 lines
105 B
TypeScript
6 lines
105 B
TypeScript
|
|
export interface CarnetStatus {
|
||
|
|
id: string;
|
||
|
|
name: string;
|
||
|
|
value: string;
|
||
|
|
color: string;
|
||
|
|
}
|