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

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

using System.Collections;
using System.Collections.Generic;

namespace JungleDB {
	public class MultiAttributes<T> {
		private T attribute;
		public T Attribute { 
			set { this.attribute = value; }
			get { return this.attribute; }
		}

		public MultiAttributes (T value) {
			this.Attribute = value;
		}

		public string getString () {
			return attribute.ToString ();
		}
	}
}