UNPKG
metadata-editor-workspace
Version:
latest (0.0.1)
0.0.1
Metadata Editor Workspace module for ME-Core Powered by Assyst
metadata-editor-workspace
/
src
/
app
/
shared
/
project.model.ts
13 lines
•
317 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
export
class
Project
{
constructor
(
public
version
:
string
,
public
_id
:
string
,
public
header
:
string
,
public
type
:
string
,
public
name
:
string
,
public
template
:
string
,
public
created
: Date,
public
modified
: Date ) { } }