Merge pull request #1641 from erri120/date-metadata

Add DateCreate and DateUpdated metadata
This commit is contained in:
Timothy Baldridge 2021-10-08 06:42:20 -06:00 committed by GitHub
commit a9fcd0e7e7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -40,5 +40,9 @@ namespace Wabbajack.DTOs
[JsonPropertyName("version")] public Version? Version { get; set; }
[JsonIgnore] public ModListSummary ValidationSummary { get; set; } = new();
[JsonPropertyName("dateCreated")] public DateTime DateCreated { get; set; } = DateTime.UnixEpoch;
[JsonPropertyName("dateUpdated")] public DateTime DateUpdated { get; set; }
}
}