16 lines
311 B
C#
16 lines
311 B
C#
|
|
namespace Cowain.Base.Models;
|
|
|
|
|
|
public class AppSettings
|
|
{
|
|
/// <summary>
|
|
/// 全局输出目录
|
|
/// </summary>
|
|
public string OutputPath { get; set; } = string.Empty;
|
|
/// <summary>
|
|
/// 全局插件目录
|
|
/// </summary>
|
|
public string PluginPath { get; set; } = string.Empty;
|
|
}
|