mirror of
https://github.com/JustArchiNET/ArchiSteamFarm.git
synced 2026-01-06 17:10:13 +00:00
Post-PR improvements
This commit is contained in:
@@ -25,8 +25,14 @@ namespace ArchiSteamFarm.Plugins.Interfaces;
|
||||
|
||||
#if !NETFRAMEWORK && !NETSTANDARD
|
||||
public interface IWebInterface : IPlugin {
|
||||
/// <summary>
|
||||
/// Specifies physical path to static WWW files provided by the plugin. Can be either relative to plugin's assembly location, or absolute. Default "www" value assumes that you ship "www" directory together with your plugin's main DLL assembly, similar to ASF.
|
||||
/// </summary>
|
||||
string PhysicalPath => "www";
|
||||
|
||||
/// <summary>
|
||||
/// Specifies web path (address) under which ASF should host your static WWW files in <see cref="PhysicalPath" /> directory. Default "/" value allows you to override default ASF files and gives you full flexibility in your www directory. However, you can instead host your files under some fixed location specified here, such as "/MyPlugin".
|
||||
/// </summary>
|
||||
[JsonProperty]
|
||||
string WebPath => "/";
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user