42e1f56dbe61036f69b25cb18f1444a3c947424f
[smartthings-infrastructure.git] / Location / locationVar.groovy
1 //Create a class for location variable
2 package Location
3
4 class locationVar {
5     private String modes
6     private String mode
7     private int contactBookEnabled
8     private List CONTACTS
9     private List PhoneNums
10     
11     private Phrase helloHome
12
13     locationVar() {
14         this.modes = "'home', 'away', 'night'"
15         this.mode = "home"
16         this.helloHome = new Phrase()
17         this.contactBookEnabled = 1
18         this.CONTACTS = ['AJ']
19         this.PhoneNums = [9495379373]
20     }
21 }