[feature-136] models management almost finished, still need to add translations

This commit is contained in:
MathieuG-P
2023-05-19 19:06:59 +02:00
parent 76bdde0fe8
commit bdc893d8a5
21 changed files with 308 additions and 128 deletions
@@ -1,3 +1,4 @@
import { BSVersion } from "shared/bs-version.interface";
import { MSModel, MSModelType } from "./model-saber.model";
export interface BsmLocalModel{
@@ -6,4 +7,5 @@ export interface BsmLocalModel{
readonly hash: string;
readonly type: MSModelType;
readonly model?: MSModel
readonly version?: BSVersion;
}