using System; namespace Quadarax.Foundation.Core.QConsole.Value { public class TimeValue : DateValue { public TimeValue() : base() { } public TimeValue(DateTime value, string timeFormat) : base(value, timeFormat) { } public TimeValue(DateTime value) : base(value) { _dateformat = System.Threading.Thread.CurrentThread.CurrentUICulture.DateTimeFormat.ShortTimePattern; } } }