17 lines
423 B
C#
17 lines
423 B
C#
using System;
|
|
using zero.Core.Attributes;
|
|
using zero.Core.Entities;
|
|
|
|
namespace zero.Core.Integrations
|
|
{
|
|
/// <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 class Integration : ZeroEntity
|
|
{
|
|
/// <inheritdoc />
|
|
public string TypeAlias { get; set; }
|
|
}
|
|
} |