mirror of
https://github.com/the-djmaze/snappymail.git
synced 2025-01-07 07:18:39 +08:00
8 lines
178 B
JavaScript
8 lines
178 B
JavaScript
import ko from 'ko';
|
|
import { Settings } from 'Common/Globals';
|
|
|
|
export class AboutAdminSettings {
|
|
constructor() {
|
|
this.version = ko.observable(Settings.app('version'));
|
|
}
|
|
}
|