using System;
using zero.Core.Attributes;
using zero.Core.Entities;
namespace zero.Core.Integrations
{
///
public class Integration : ZeroEntity, IIntegration
{
///
public string TypeAlias { get; set; }
}
///
/// 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 interface IIntegration : IZeroConfigEntity, IZeroDbConventions { }
}