Ejemplo n.º 1
0
 public APIEndPointIOWarning()
 {
     SourceEndPoint        = new APIEndPoint();
     SourceThing           = new APIThing();
     AffectedLocations     = new List <APILocation>();
     AffectedLocationViews = new List <APILocationView>();
 }
Ejemplo n.º 2
0
 public APIThingExtensionValue()
 {
     this.ID             = 0;
     this.Value          = "";
     this.Thing          = new APIThing();
     this.ThingExtension = new APIThingExtension();
 }
Ejemplo n.º 3
0
 public APIEndPoint()
 {
     this.ID = 0;
     //this.Guid = Guid.Empty;
     this.KeyPass      = Guid.Empty;
     this.Title        = "";
     this.Device       = new APIDevice();
     this.EndPointType = new APIEndPointType();
     this.Thing        = new APIThing();
 }
Ejemplo n.º 4
0
        //#region Childs
        //public APIEndPoint EndPoint { get; set; }
        //public APIDevice Device { get; set; }
        //#endregion



        #region :: Constructor ::
        public APIThingEnd()
        {
            this.ID                 = 0;
            this.LastIOID           = 0;
            this.LastIOTimeStamp    = null;
            this.LastIOTimeStampUTC = null;
            this.LastIOValue        = "";
            this.Thing              = new APIThing();
            //this.Device = new APIDevice();
            //this.EndPoint = new APIEndPoint();
        }