12345678910111213141516171819202122 |
- using System;
- namespace Microsoft.Samples.AppUpdater
- {
- public class UpdateDetectedEventArgs : EventArgs
- {
- private bool _HasNewVersion;
- public bool HasNewVersion
- {
- get
- {
- return _HasNewVersion;
- }
- set
- {
- _HasNewVersion = value;
- }
- }
- }
- }
|