Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions src/D2L.CodeStyle.Annotations/Statics/Audited.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,19 @@ namespace D2L {
public static partial class CodeStyle {
public static partial class Statics {
public sealed class Audited : Attribute {
public Audited(
string owner,
string auditedDate,
string rationale
) {
Owner = owner;
AuditedDate = auditedDate;
Rationale = rationale;
}

public string Owner { get; private set; }
public string AuditedDate { get; private set; }
public string Rationale { get; private set; }
}
}
}
Expand Down