11 lines
141 B
C#
11 lines
141 B
C#
namespace Crosstales.Radio.Model.Enum
|
|
{
|
|
public enum PathPrefix
|
|
{
|
|
None = 0,
|
|
PersistentDataPath = 1,
|
|
DataPath = 2,
|
|
TempPath = 3
|
|
}
|
|
}
|