Skip to content

Instantly share code, notes, and snippets.

@MartinZikmund
Last active August 27, 2021 07:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save MartinZikmund/02f53366a6cf0e028c24109a1e04d8d8 to your computer and use it in GitHub Desktop.
Save MartinZikmund/02f53366a6cf0e028c24109a1e04d8d8 to your computer and use it in GitHub Desktop.
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