2023-03-28 21:30:29 -05:00
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
2024-08-12 00:15:16 -05:00
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
2023-03-28 21:30:29 -05:00
|
|
|
|
using System.Text;
|
|
|
|
|
|
|
|
|
|
|
|
namespace LANCommander.SDK.Enums
|
|
|
|
|
|
{
|
|
|
|
|
|
public enum SavePathType
|
|
|
|
|
|
{
|
2024-08-12 00:15:16 -05:00
|
|
|
|
[Display(Name = "File / Folder")]
|
2023-03-28 21:30:29 -05:00
|
|
|
|
File,
|
2024-08-12 00:15:16 -05:00
|
|
|
|
[Display(Name = "Registry Key")]
|
2023-03-28 21:30:29 -05:00
|
|
|
|
Registry
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|