7 lines
109 B
TypeScript
7 lines
109 B
TypeScript
|
|
export interface FormOfSecurity {
|
||
|
|
name: string;
|
||
|
|
id: string;
|
||
|
|
value: string;
|
||
|
|
isGov: boolean;
|
||
|
|
}
|