Files
mixtape/zero.Core/Integrations/Integration.cs
T

17 lines
423 B
C#
Raw Normal View History

2021-01-13 23:50:03 +01:00
using System;
using zero.Core.Attributes;
2020-12-16 13:22:18 +01:00
using zero.Core.Entities;
2020-12-10 15:57:59 +01:00
namespace zero.Core.Integrations
{
2021-01-13 23:50:03 +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>
2020-12-16 13:22:18 +01:00
[Collection("Integrations")]
2021-05-04 17:23:52 +02:00
public class Integration : ZeroEntity
{
/// <inheritdoc />
public string TypeAlias { get; set; }
}
2021-01-13 23:50:03 +01:00
}