// Copyright © 2018 Dmitry Sikorsky. All rights reserved. // Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using ExtCore.Infrastructure; namespace ExtCore.FileStorage; /// /// Overrides the ExtensionBase class and provides the ExtCore.FileStorage extension information. /// public class Extension : ExtensionBase { /// /// Gets the name of the extension. /// public override string Name => "ExtCore.FileStorage"; /// /// Gets the URL of the extension. /// public override string Url => "https://extcore.net/"; /// /// Gets the version of the extension. /// public override string Version => "8.1.0"; /// /// Gets the authors of the extension (separated by commas). /// public override string Authors => "Dmitry Sikorsky"; }