pda
jvm
model
/
net.artux.pda.model.quest
/
StoryItem
Story
Item
data
class
StoryItem
(
var
id
:
Int
=
0
,
var
title
:
String
,
var
icon
:
String
?
=
null
,
var
desc
:
String
,
var
complete
:
Boolean
=
false
,
var
needs
:
List
<
Int
>
=
mutableListOf()
)
Members
Constructors
Story
Item
Link copied to clipboard
constructor
(
id
:
Int
=
0
,
title
:
String
,
icon
:
String
?
=
null
,
desc
:
String
,
complete
:
Boolean
=
false
,
needs
:
List
<
Int
>
=
mutableListOf()
)
Properties
complete
Link copied to clipboard
var
complete
:
Boolean
desc
Link copied to clipboard
var
desc
:
String
icon
Link copied to clipboard
var
icon
:
String
?
id
Link copied to clipboard
var
id
:
Int
needs
Link copied to clipboard
var
needs
:
List
<
Int
>
title
Link copied to clipboard
var
title
:
String