mirror of
https://github.com/Artemis-RGB/Artemis
synced 2025-12-13 05:48:35 +00:00
12 lines
537 B
C#
12 lines
537 B
C#
using System;
|
|
using Artemis.Core.Plugins.Models;
|
|
|
|
namespace Artemis.Core
|
|
{
|
|
public static class Constants
|
|
{
|
|
public static readonly string DataFolder = Environment.GetFolderPath(Environment.SpecialFolder.CommonApplicationData) + "\\Artemis\\";
|
|
public static readonly string ConnectionString = $"FileName={DataFolder}\\database.db;Mode=Exclusive";
|
|
public static readonly PluginInfo CorePluginInfo = new PluginInfo {Guid = Guid.Parse("ffffffff-ffff-ffff-ffff-ffffffffffff"), Name = "Artemis Core"};
|
|
}
|
|
} |