22 lines
432 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace AutoClient.Modes
{
public class FolderStoreMode : IMode
{
public void Start(ICodexInstance instance, int index)
{
throw new NotImplementedException();
}
public void Stop()
{
throw new NotImplementedException();
}
}
}