-
Notifications
You must be signed in to change notification settings - Fork 753
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4695 from donker/Fixupdatewarning3
Bring back update notification
- Loading branch information
Showing
8 changed files
with
259 additions
and
172 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
28 changes: 28 additions & 0 deletions
28
Dnn.AdminExperience/Library/Dnn.PersonaBar.UI/Services/Dto/FrameworkQueryDTO.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
// Licensed to the .NET Foundation under one or more agreements. | ||
// The .NET Foundation licenses this file to you under the MIT license. | ||
// See the LICENSE file in the project root for more information | ||
|
||
namespace Dnn.PersonaBar.UI.Services.DTO | ||
{ | ||
using System; | ||
using System.Runtime.Serialization; | ||
|
||
[DataContract] | ||
public class FrameworkQueryDTO | ||
{ | ||
[DataMember(Name = "UpToDate")] | ||
public bool UpToDate { get; set; } = true; | ||
|
||
[DataMember(Name = "Version")] | ||
public string Version { get; set; } = string.Empty; | ||
|
||
[DataMember(Name = "Url")] | ||
public string Url { get; set; } = string.Empty; | ||
|
||
[DataMember(Name = "Critical")] | ||
public bool IsCritical { get; set; } = false; | ||
|
||
[DataMember(Name = "Published")] | ||
public DateTime Published { get; set; } | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.