mirror of
https://github.com/Artemis-RGB/Artemis
synced 2026-01-02 10:43:31 +00:00
Sidebar - Redesigned sidebar with customizable categories Profiles - Added the ability to configure custom profile icons Profiles - Added the ability to activate multiple profiles for modules at once Profiles - Added the ability to create profiles for no modules Profiles - Added the ability to suspend a profile or an entire category Profiles - Added profile activation conditions Profiles - Added file-based importing/exporting Profile editor - Condensed UI, removed tabs Profile editor - Disable condition operators until a left-side is picked
17 lines
453 B
C#
17 lines
453 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Artemis.Storage.Entities.Profile
|
|
{
|
|
public class ProfileCategoryEntity
|
|
{
|
|
public Guid Id { get; set; }
|
|
|
|
public string Name { get; set; }
|
|
public bool IsCollapsed { get; set; }
|
|
public bool IsSuspended { get; set; }
|
|
public int Order { get; set; }
|
|
|
|
public List<ProfileConfigurationEntity> ProfileConfigurations { get; set; } = new();
|
|
}
|
|
} |