22 lines
638 B
C#
22 lines
638 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 GetPointsAdminListRsp
|
|
{
|
|
public string Id { get; set; }
|
|
public string Account { get; set; }
|
|
public string RealName { get; set; }
|
|
public string? Phone { get; set; }
|
|
public int? TotalPoints { get; set; }
|
|
public int? AvailablePoints { get; set; }
|
|
public DateTime? LastUpdatedTime { get; set; }
|
|
public int? RoleEnum { get; set; }
|
|
public string? RoleEnumName { get; set; }
|
|
}
|
|
}
|