16 lines
339 B
C#
16 lines
339 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace LearningOfficer.OA.Common.Dtos.Points
|
|
{
|
|
public class EditPointsReq
|
|
{
|
|
public long UserId { get; set; }
|
|
public int Points { get; set; }
|
|
public string Remark { get; set; }
|
|
}
|
|
}
|