14 lines
460 B
C#
14 lines
460 B
C#
namespace ESuite.UI.E2E.Models
|
|
{
|
|
public class AuditData
|
|
{
|
|
public string? Timing { get; set; }
|
|
public string? UserName { get; set; }
|
|
public string? Comment { get; set; }
|
|
public string? EntityDisplayName {get; set; }
|
|
public string? Type {get; set; }
|
|
public string? DisplayName { get; set; }
|
|
public string? Changes { get; set; }
|
|
public int? NumberOfLogs { get; set; }
|
|
}
|
|
} |