UNPKG

@omnia/fx-models

Version:
15 lines (14 loc) 295 B
export interface AuditLog { id?: number; context: AuditLogContext; previousState: AuditLogState; newState: AuditLogState; category: string; loggedBy: string; loggedAt: Date; } export interface AuditLogState { } export interface AuditLogContext { title: string; }