StorageServer/Models/SettingModel.cs

7 lines
147 B
C#
Raw Normal View History

2024-03-24 10:29:56 +09:00
namespace StorageServer.Models;
public class SettingModel {
public string DBFilePath { get; set; }
public string SavePath { get; set; }
}