StorageServer/Models/SettingModel.cs
2024-03-24 10:29:56 +09:00

7 lines
147 B
C#

namespace StorageServer.Models;
public class SettingModel {
public string DBFilePath { get; set; }
public string SavePath { get; set; }
}