mirror of
https://github.com/Artemis-RGB/Artemis
synced 2025-12-13 05:48:35 +00:00
10 lines
308 B
C#
10 lines
308 B
C#
namespace Artemis.Storage.Migrator.Legacy.Entities.General;
|
|
|
|
public class ScriptConfigurationEntity
|
|
{
|
|
public Guid Id { get; set; }
|
|
|
|
public string Name { get; set; } = string.Empty;
|
|
public string ScriptingProviderId { get; set; } = string.Empty;
|
|
public string? ScriptContent { get; set; }
|
|
} |