10 lines
310 B
Lua
10 lines
310 B
Lua
local ServerChapterData = class("ServerChapterData", ServerBaseData)
|
|
|
|
local MIN_CHAPTER_ID = 1
|
|
|
|
function ServerChapterData:init(data)
|
|
self.data.chapterId = data and data.chapterId or MIN_CHAPTER_ID
|
|
self.data.maxChapterId = data and data.maxChapterId or (self.data.chapterId - 1)
|
|
end
|
|
|
|
return ServerChapterData |