Files
sql-server-samples/samples/features/security/sql-ledger/source/ContosoHR/Models/AuditEvent.cs
T
Pieter c9acbfd2d0 Contoso Web App
Contoso Web App
2022-02-15 13:08:08 +01:00

14 lines
306 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace ContosoHR.Models
{
public class AuditEvent
{
public DateTime TimeStamp { get; set; }
public string UserName { get; set; }
public string Query { get; set; }
}
}