| 1234567891011121314151617181920212223 |
- using System;
- using System.Threading;
- 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 = Thread.CurrentThread.CurrentUICulture.DateTimeFormat.ShortTimePattern;
- }
- }
- }
|