10 lines
200 B
TypeScript
10 lines
200 B
TypeScript
import { InfraOS } from './InfraOS';
|
|
import { Infra } from './Infra';
|
|
|
|
export interface InfraOSDaemon extends Infra {
|
|
// id?: number;
|
|
os?: InfraOS;
|
|
name?: string;
|
|
createDate?: Date;
|
|
}
|