14 lines
358 B
TypeScript
14 lines
358 B
TypeScript
import { InfraOS } from './InfraOS';
|
|
import { Infra } from './Infra';
|
|
import { MetaInfraVendor } from 'packages/meta/infra-vendor/model/MetaInfraVendor';
|
|
|
|
export interface InfraOSPort extends Infra {
|
|
// id?: number;
|
|
os?: InfraOS;
|
|
createDate?: Date;
|
|
port?: number;
|
|
portType?: string;
|
|
vendor?: MetaInfraVendor;
|
|
tlsType?: boolean;
|
|
}
|