2021-12-22 15:41:11 +01:00
|
|
|
using System.Text.Json.Serialization;
|
|
|
|
|
|
|
|
|
|
namespace zero.Configuration;
|
2021-11-20 13:52:28 +01:00
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// An integration is an application part which has a public configuration per app.
|
|
|
|
|
/// It's up to the user to provide functionality.
|
|
|
|
|
/// </summary>
|
|
|
|
|
[RavenCollection("Integrations")]
|
2021-12-22 15:41:11 +01:00
|
|
|
public class Integration : ZeroEntity
|
2021-11-20 13:52:28 +01:00
|
|
|
{
|
|
|
|
|
}
|