27 lines
587 B
C#
27 lines
587 B
C#
using Api.Framework.Events;
|
|
using Api.Framework.Model;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Api.Framework.SDK
|
|
{
|
|
/// <summary>
|
|
/// 用户积分变动事件
|
|
/// </summary>
|
|
public class MemberPointChangeEvent : BaseEvents
|
|
{
|
|
/// <summary>
|
|
/// 修改积分信息
|
|
/// </summary>
|
|
public fl_point_hist Point { get; private set; }
|
|
|
|
public MemberPointChangeEvent(fl_point_hist point)
|
|
{
|
|
this.Point = point;
|
|
}
|
|
}
|
|
}
|