Add DateCreate and DateUpdated metadata

This commit is contained in:
erri120 2021-10-02 15:01:35 +02:00
parent e4582ebde3
commit 4b17d488c7
No known key found for this signature in database
GPG Key ID: 7FA9556C936B847C

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; }
}
}