7 lines
144 B
C#
7 lines
144 B
C#
|
|
namespace FileUploader.Models;
|
|||
|
|
|
|||
|
|
public class SystemSetting
|
|||
|
|
{
|
|||
|
|
public string SyncDir { get; set; }
|
|||
|
|
public int TaskCount { get; set; }
|
|||
|
|
}
|