13 lines
180 B
C#
13 lines
180 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Text;
|
|||
|
|
|||
|
namespace LANCommander.SDK.Enums
|
|||
|
{
|
|||
|
public enum SavePathType
|
|||
|
{
|
|||
|
File,
|
|||
|
Registry
|
|||
|
}
|
|||
|
}
|