initial commit
[CPE_learningsite] / CPEFlex / EngagementPod / bin-debug / models / Settings.as.mine
1 package models
2 {
3         import com.adobe.sync.components.SyncConnector;
4
5         public class Settings
6         {
7                 [Bindable] public var version:String = "1.0.0";
8                 [Bindable] public var baseServiceUrl:String = "http://dev.cpe.com"; //"http://cpewebcast.com";
9                 [Bindable] public var loadComplete:Boolean = false;
10                 [Bindable] public var isOwner:Boolean = false;
11                 [Bindable] public var currentRole:String;
12                 [bindable] public var room_ScoID:Number;
13                 [bindable] public var roomUrl:Number;
14                 [bindable] public var accoundID:Number;
15                 [bindable] public var syncConnector:SyncConnector;
16                 
17                 public function Settings(sc)
18                 {
19                         syncConnector = sc;
20                 }
21         }
22 }