mirror of
https://github.com/OneUptime/oneuptime
synced 2024-11-23 15:49:10 +00:00
29 lines
487 B
TypeScript
29 lines
487 B
TypeScript
import { Column, Entity, Index } from 'typeorm';
|
|
import BaseModel from './BaseModel';
|
|
import User from './User';
|
|
import Project from './Project';
|
|
import Component from './Component';
|
|
import ApplicationSecurity from './ApplicationSecurity';
|
|
|
|
|
|
@Entity({
|
|
name: "ApplicationSecurityRunInstance"
|
|
})
|
|
export default class ApplicationSecurityRunInstance extends BaseModel {
|
|
|
|
@Column()
|
|
security!: ApplicationSecurity
|
|
|
|
@Column()
|
|
component!: Component
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|