Initial commit, project structure and domain models
This commit is contained in:
0
src/api/MicCheck.Api/Audit/.gitkeep
Normal file
0
src/api/MicCheck.Api/Audit/.gitkeep
Normal file
15
src/api/MicCheck.Api/Audit/AuditLog.cs
Normal file
15
src/api/MicCheck.Api/Audit/AuditLog.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
namespace MicCheck.Api.Audit;
|
||||
|
||||
public class AuditLog
|
||||
{
|
||||
public int Id { get; init; }
|
||||
public required string ResourceType { get; init; }
|
||||
public required string ResourceId { get; init; }
|
||||
public required string Action { get; init; }
|
||||
public string? Changes { get; init; }
|
||||
public int OrganizationId { get; init; }
|
||||
public int? ProjectId { get; init; }
|
||||
public int? EnvironmentId { get; init; }
|
||||
public int? ActorUserId { get; init; }
|
||||
public DateTimeOffset CreatedAt { get; init; }
|
||||
}
|
||||
Reference in New Issue
Block a user