pda
jvm
model
/
net.artux.pda.model.profile
/
NoteModel
Note
Model
data
class
NoteModel
(
var
id
:
UUID
=
UUID.randomUUID()
,
var
title
:
String
?
=
null
,
var
content
:
String
?
=
null
,
var
time
:
Instant
?
=
null
)
:
Serializable
Members
Constructors
Note
Model
Link copied to clipboard
constructor
(
id
:
UUID
=
UUID.randomUUID()
,
title
:
String
?
=
null
,
content
:
String
?
=
null
,
time
:
Instant
?
=
null
)
Properties
content
Link copied to clipboard
var
content
:
String
?
id
Link copied to clipboard
var
id
:
UUID
time
Link copied to clipboard
var
time
:
Instant
?
title
Link copied to clipboard
var
title
:
String
?