Renamed interfaces to IInterface
This commit is contained in:
parent
6c601429b9
commit
4d17249818
32 changed files with 106 additions and 105 deletions
12
src/Interfaces/IAvailableSymbol.ts
Normal file
12
src/Interfaces/IAvailableSymbol.ts
Normal file
|
@ -0,0 +1,12 @@
|
|||
import { XPositionReference } from '../Enums/XPositionReference';
|
||||
import { IImage } from './IImage';
|
||||
|
||||
/**
|
||||
* Model of available symbol to configure the application */
|
||||
export interface IAvailableSymbolModel {
|
||||
Name: string
|
||||
XPositionReference: XPositionReference
|
||||
Image: IImage
|
||||
Width: number
|
||||
Height: number
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue