diff options
| author | dkanada <dkanada@users.noreply.github.com> | 2020-05-24 16:59:05 +0900 |
|---|---|---|
| committer | dkanada <dkanada@users.noreply.github.com> | 2020-05-24 16:59:05 +0900 |
| commit | deafe59b7ef4651415280255335b9b5e3f4dcacb (patch) | |
| tree | bb771eea02e0ad07a8ab468778d981240167d78b /MediaBrowser.Model/Updates | |
| parent | 6d3e5d86626fb4d3ac80ad52b9446522ddfc9047 (diff) | |
add the timestamp property back to the version info
Diffstat (limited to 'MediaBrowser.Model/Updates')
| -rw-r--r-- | MediaBrowser.Model/Updates/VersionInfo.cs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/MediaBrowser.Model/Updates/VersionInfo.cs b/MediaBrowser.Model/Updates/VersionInfo.cs index 368f489e2..f12e35dc0 100644 --- a/MediaBrowser.Model/Updates/VersionInfo.cs +++ b/MediaBrowser.Model/Updates/VersionInfo.cs @@ -36,5 +36,11 @@ namespace MediaBrowser.Model.Updates /// </summary> /// <value>The checksum.</value> public string checksum { get; set; } + + /// <summary> + /// Gets or sets a timestamp of when the binary was built. + /// </summary> + /// <value>The timestamp.</value> + public string timestamp { get; set; } } } |
