11 lines
202 B
C#
11 lines
202 B
C#
using Learn.Utils;
|
|
|
|
namespace Learn.Config;
|
|
|
|
[ConfigItem("APP")]
|
|
public class AppConfig : IConfigItem
|
|
{
|
|
public string ScanPath { get; set; } = "";
|
|
|
|
public string TargetPath { get; set; } = "";
|
|
} |