mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-30 12:11:56 +00:00
13 lines
186 B
TypeScript
13 lines
186 B
TypeScript
import { Injectable } from '@angular/core'
|
|
|
|
@Injectable({
|
|
providedIn: 'root',
|
|
})
|
|
export class ReleaseNoteModel {
|
|
releaseNotes: { [version: string]: string}
|
|
|
|
constructor () { }
|
|
}
|
|
|
|
|