remove POCO interfaces
This commit is contained in:
@@ -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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user