//--------------------------------------
//               PowerUI
//
//        For documentation or 
//    if you have any issues, visit
//        powerUI.kulestar.com
//
//    Copyright  2013 Kulestar Ltd
//          www.kulestar.com
//--------------------------------------

using System;


namespace Css.Units{
	
	/// <summary>
	/// Represents an instance of a seconds unit.
	/// </summary>
	
	public class SecondsUnit:TimeUnit{
		
		public override string ToString(){
			return RawValue +"s";
		}
		
		protected override Value Clone(){
			SecondsUnit result=new SecondsUnit();
			result.RawValue=RawValue;
			return result;
		}
		
		public override string[] PostText{
			get{
				return new string[]{"s"};
			}
		}
		
	}
	
}



