using System; using zero.Core.Attributes; using zero.Core.Entities; namespace zero.Core.Integrations { /// /// An integration is an application part which has a public configuration per app. /// It's up to the user to provide functionality. /// [Collection("Integrations")] public class Integration : ZeroEntity { /// public string TypeAlias { get; set; } } }