OperationRecord.cs 996 B

123456789101112131415161718192021222324252627282930313233
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Reflection.Emit;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace Model
  8. {
  9. public class OperationRecord
  10. {
  11. public DateTime Timestamp { get; set; }
  12. public OperationType OperationType { get; set; }
  13. public string ControlName { get; set; }
  14. public object OldValue { get; set; }
  15. public object NewValue { get; set; }
  16. public string Detail { get; set; }
  17. public User User { get; set; }
  18. }
  19. public class OperationRecordDisplay
  20. {
  21. public int Id { get; set; }
  22. public int RowNumber { get; set; }
  23. public DateTime Timestamp { get; set; }
  24. public string OperationType { get; set; }
  25. public string ControlName { get; set; }
  26. public string OldValue { get; set; }
  27. public string NewValue { get; set; }
  28. public string Detail { get; set; }
  29. public string Username { get; set; }
  30. }
  31. }