787ad92ff2
* Remove extra usings * readd serilog
28 lines
730 B
C#
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;
|
|
}
|
|
}
|