AppendixVersion.cs 451 B

12345678910111213141516171819202122
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace GreenTree.Nachtragsmanagement.Core
  7. {
  8. public static class AppendixVersion
  9. {
  10. /// <summary>
  11. /// Gets or sets the store version
  12. /// </summary>
  13. public static string CurrentVersion
  14. {
  15. get
  16. {
  17. return "0.9.1.0";
  18. }
  19. }
  20. }
  21. }