OSDN Git Service

ライセンスを入れておく。
[gokigen/ThetaThoughtShutter.git] / app / src / main / java / jp / osdn / gokigen / thetathoughtshutter / MyApplicationStatus.kt
1 package jp.osdn.gokigen.thetathoughtshutter
2
3 data class MyApplicationStatus(val defaultStatus : Status = Status.Undefined)
4 {
5     var status: Status = Status.Undefined
6
7     enum class Status
8     {
9         Undefined,
10         FailedInitialize,
11         Initialized,
12         Searching,
13         Connected,
14         Scanning,
15         Syncing,
16     }
17 }