mirror of
https://github.com/Artemis-RGB/Artemis
synced 2025-12-13 05:48:35 +00:00
16 lines
400 B
C#
16 lines
400 B
C#
using System;
|
|
|
|
namespace Artemis.Storage.Entities.Plugins
|
|
{
|
|
/// <summary>
|
|
/// Represents the setting of a plugin, a plugin can have multiple settings
|
|
/// </summary>
|
|
public class PluginSettingEntity
|
|
{
|
|
public Guid Id { get; set; }
|
|
public Guid PluginGuid { get; set; }
|
|
|
|
public string Name { get; set; }
|
|
public string Value { get; set; }
|
|
}
|
|
} |