using System;
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.
///
public class Integration : IIntegration
{
///
public string Alias { get; set; }
///
public string Name { get; set; }
///
public string Description { get; set; }
///
public string ImagePath { get; set; }
///
public string Color { get; set; }
///
public Type SettingsType { get; set; }
///
public bool AllowMultiple { get; set; }
///
public bool IsAutoActivated { get; set; }
}
}