webdav portal owa editing alpha
This commit is contained in:
parent
7aa68cd775
commit
aedc7ec08e
33 changed files with 969 additions and 153 deletions
|
@ -0,0 +1,9 @@
|
|||
namespace WebsitePanel.WebDav.Core.Interfaces.Storages
|
||||
{
|
||||
public interface IKeyValueStorage
|
||||
{
|
||||
TV Get<TV>(string id);
|
||||
bool Add<TV>(string id, TV value);
|
||||
bool Delete(string id);
|
||||
}
|
||||
}
|
|
@ -0,0 +1,9 @@
|
|||
using WebsitePanel.Ecommerce.EnterpriseServer;
|
||||
|
||||
namespace WebsitePanel.WebDav.Core.Interfaces.Storages
|
||||
{
|
||||
public interface ITtlStorage : IKeyValueStorage
|
||||
{
|
||||
void SetTtl<TV>(string id, TV value);
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue