Files
speckle-sharp-sdk/src/Speckle.Core/Kits/KitDeclaration.cs
T
Adam Hathcock 787ad92ff2 Remove extra usings (#55)
* Remove extra usings

* readd serilog
2024-07-30 11:07:52 +01:00

28 lines
730 B
C#

#nullable disable
using Speckle.Core.Models;
namespace Speckle.Core.Kits;
/// <summary>
/// Needed so we can properly deserialize all the Base-derived objects from Speckle.Core itself.
/// </summary>
public sealed class CoreKit : ISpeckleKit
{
public IEnumerable<Type> Types => GetType().Assembly.GetTypes().Where(type => type.IsSubclassOf(typeof(Base)));
public string Description => "Base Speckle models for revisions, streams, etc.";
public string Name => nameof(CoreKit);
public string Author => "Dimitrie";
public string WebsiteOrEmail => "hello@speckle.systems";
public IEnumerable<string> Converters => new List<string>();
public ISpeckleConverter LoadConverter(string app)
{
return null;
}
}