7 lines
147 B
C#
7 lines
147 B
C#
|
namespace StorageServer.Models;
|
||
|
|
||
|
public class SettingModel {
|
||
|
public string DBFilePath { get; set; }
|
||
|
public string SavePath { get; set; }
|
||
|
}
|