wasDAVClient

Subversion Repositories:
Compare Path: Rev
With Path: Rev
?path1? @ 7  →  ?path2? @ 8
/wasDAVClient/Constants.cs
@@ -0,0 +1,26 @@
///////////////////////////////////////////////////////////////////////////
// Copyright (C) Wizardry and Steamworks 2017 - License: GNU GPLv3 //
// Please see: http://www.gnu.org/licenses/gpl.html for legal details, //
// rights of fair usage, the disclaimer and warranty conditions. //
///////////////////////////////////////////////////////////////////////////
 
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace wasDAVClient
{
public class Constants
{
public const string DIRECTORY_SEPARATOR = @"/";
 
public struct DavDepth
{
public const string RESOURCE = @"0";
public const string MEMBERS = @"1";
public const string ALL = @"infinity";
}
}
}