using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using QMAPP.FJC.Entity.EnergyManage;

namespace MeterReadingService.MeterReader
{
    public class MeterReadAsyncResult : IAsyncResult
    {
        public Meter CurrentMeter { get; set; }
        public Byte[] ReadBuffer { get; set; }

        public object AsyncState
        {
            get { return null; }
        }

        public System.Threading.WaitHandle AsyncWaitHandle
        {
            get { return null; }
        }

        public bool CompletedSynchronously
        {
            get { return false; }
        }

        public bool IsCompleted
        {
            get { return false; }
        }
    }
}