14 lines
177 B
C#
14 lines
177 B
C#
namespace Crosstales.Radio.Model.Enum
|
|
{
|
|
public enum URLPrefix
|
|
{
|
|
None = 0,
|
|
Http = 1,
|
|
Https = 2,
|
|
File = 3,
|
|
PersistentDataPath = 4,
|
|
DataPath = 5,
|
|
TempPath = 6
|
|
}
|
|
}
|