remove POCO interfaces

This commit is contained in:
2021-05-04 17:23:52 +02:00
parent 6d6983c9da
commit 8585c35ef3
173 changed files with 988 additions and 1805 deletions
+5 -9
View File
@@ -4,18 +4,14 @@ using zero.Core.Entities;
namespace zero.Core.Integrations
{
/// <inheritdoc />
public class Integration : ZeroEntity, IIntegration
{
/// <inheritdoc />
public string TypeAlias { get; set; }
}
/// <summary>
/// An integration is an application part which has a public configuration per app.
/// It's up to the user to provide functionality.
/// </summary>
[Collection("Integrations")]
public interface IIntegration : IZeroConfigEntity, IZeroDbConventions { }
public class Integration : ZeroEntity
{
/// <inheritdoc />
public string TypeAlias { get; set; }
}
}