mirror of
https://github.com/Artemis-RGB/Artemis
synced 2025-12-13 05:48:35 +00:00
13 lines
298 B
C#
13 lines
298 B
C#
using System;
|
|
|
|
namespace Artemis.Storage.Entities.Profile
|
|
{
|
|
public class LayerElementEntity
|
|
{
|
|
public Guid Id { get; set; }
|
|
|
|
public Guid PluginGuid { get; set; }
|
|
public string LayerElementType { get; set; }
|
|
public string Configuration { get; set; }
|
|
}
|
|
} |