using System; using System.Collections.Generic; namespace Artemis.Storage.Entities.Profile { public class ProfileEntity { public ProfileEntity() { Folders = new List(); Layers = new List(); } public Guid Id { get; set; } public Guid PluginGuid { get; set; } public string Name { get; set; } public bool IsActive { get; set; } public List Folders { get; set; } public List Layers { get; set; } } }