16 lines
327 B
C#
16 lines
327 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace SWS.Share
|
|
{
|
|
public class ActionHistory
|
|
{
|
|
public DateTime? ActionTime { get; set; }
|
|
public Action ActionType { get; set; }
|
|
public string reason { get; set; }
|
|
}
|
|
}
|