| 12345678910111213141516171819202122 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace GreenTree.Nachtragsmanagement.Core
- {
- public static class AppendixVersion
- {
- /// <summary>
- /// Gets or sets the store version
- /// </summary>
- public static string CurrentVersion
- {
- get
- {
- return "0.9.1.1";
- }
- }
- }
- }
|