Last active
August 27, 2021 07:52
-
-
Save MartinZikmund/02f53366a6cf0e028c24109a1e04d8d8 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
namespace Windows.UI.Notifications | |
{ | |
public partial class BadgeNotification | |
{ | |
public BadgeNotification(XmlDocument content) | |
{ | |
Content = content ?? throw new ArgumentNullException(nameof(content)); | |
} | |
public XmlDocument Content { get; } | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment