// Copyright © 2017 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.Data { /// /// Overrides the ExtensionBase class and provides the ExtCore.Data extension information. /// public class Extension : ExtensionBase { /// /// Gets the name of the extension. /// public override string Name => "ExtCore.Data"; /// /// Gets the URL of the extension. /// public override string Url => "http://extcore.net/"; /// /// Gets the version of the extension. /// public override string Version => "4.1.0"; /// /// Gets the authors of the extension (separated by commas). /// public override string Authors => "Dmitry Sikorsky"; } }