Element_AdaptiveProgressBar.cs 1.3 KB

123456789101112131415161718192021222324252627282930
  1. // ******************************************************************
  2. // Copyright (c) Microsoft. All rights reserved.
  3. // This code is licensed under the MIT License (MIT).
  4. // THE CODE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
  5. // INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  6. // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
  7. // IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
  8. // DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
  9. // TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH
  10. // THE CODE OR THE USE OR OTHER DEALINGS IN THE CODE.
  11. // ******************************************************************
  12. namespace Microsoft.Toolkit.Uwp.Notifications.Adaptive.Elements
  13. {
  14. [NotificationXmlElement("progress")]
  15. internal sealed class Element_AdaptiveProgressBar : IElement_ToastBindingChild
  16. {
  17. [NotificationXmlAttribute("value")]
  18. public string Value { get; set; }
  19. [NotificationXmlAttribute("title")]
  20. public string Title { get; set; }
  21. [NotificationXmlAttribute("valueStringOverride")]
  22. public string ValueStringOverride { get; set; }
  23. [NotificationXmlAttribute("status")]
  24. public string Status { get; set; }
  25. }
  26. }