Skip to content
Snippets Groups Projects
SensorDataContract.cs 496 B
Newer Older
Michal Ondrejička's avatar
Michal Ondrejička committed
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace SDK.Models
{
    public class SensorDataContract
    {
        public int Id { get; set; }

        public string Quantity { get; set; }

        public string Value { get; set; }

        public string Unit { get; set; }

        public string DataType { get; set; }

        public long Timestamp { get; set; }

        //public object Range { get; set; }
    }
}