using System;
using System.Collections.Generic;
using LeanCloud;
using System.Collections;
namespace LeanCloud.LiveQuery
{
///
/// AVLiveQuery 回调参数
///
public class AVLiveQueryEventArgs : EventArgs
where T : AVObject
{
internal AVLiveQueryEventArgs()
{
}
///
/// 更新事件
///
public string Scope { get; set; }
///
/// 更新字段
///
public IEnumerable Keys { get; set; }
///
/// 更新数据
///
public T Payload { get; set; }
}
}