mirror of
https://github.com/Microsoft/sql-server-samples.git
synced 2025-12-08 14:58:54 +00:00
14 lines
306 B
C#
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; }
|
|
}
|
|
} |