This commit is contained in:
2022-10-07 13:36:15 +03:00
parent 7bc9db03f0
commit 6fc491a0d6
4 changed files with 33 additions and 9 deletions

View File

@@ -0,0 +1,17 @@
using PluginManager.Online.Helpers;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace PluginManager.Interfaces
{
public interface AppExtension
{
public string Name { get; }
public VersionString Version { get; }
}
}