WatchThis.Controllers.SlideshowDriver.GetTimerValue C# (CSharp) 메소드

GetTimerValue() 개인적인 메소드

private GetTimerValue ( ) : double
리턴 double
		private double GetTimerValue()
		{
			var time = (Model.SlideSeconds + Model.TransitionSeconds) * 1000;
			if (time < 100)
			{
				time = 100;
			}

			return time;
		}