16 lines
290 B
C#
16 lines
290 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Telegrator.StateKeeping.Components
|
|
{
|
|
/*
|
|
public interface IStateKeepingFacility
|
|
{
|
|
public void SetState(object key, object value);
|
|
|
|
public object GetState(object key);
|
|
}
|
|
*/
|
|
}
|