view Main/jungle-main/core/Attributes.cs @ 35:f2ea780b3e80

fix
author Kazuma Takeda
date Wed, 22 Feb 2017 16:30:19 +0900
parents 07318c10b894
children
line wrap: on
line source


namespace JungleDB {
	public interface Attributes{
		object get (string key);
		T get<T> (string key);
		byte[] getBytes(string key);
		string getString (string key);
	}
}