/ src / modules / cmdpal / ext / Microsoft.CmdPal.Ext.TimeDate / Helpers / ISettingsInterface.cs
ISettingsInterface.cs
 1  // Copyright (c) Microsoft Corporation
 2  // The Microsoft Corporation licenses this file to you under the MIT license.
 3  // See the LICENSE file in the project root for more information.
 4  
 5  using System;
 6  using System.Collections.Generic;
 7  using System.Linq;
 8  using System.Text;
 9  using System.Threading.Tasks;
10  
11  namespace Microsoft.CmdPal.Ext.TimeDate.Helpers;
12  
13  public interface ISettingsInterface
14  {
15      public int FirstWeekOfYear { get; }
16  
17      public int FirstDayOfWeek { get; }
18  
19      public bool EnableFallbackItems { get; }
20  
21      public bool TimeWithSecond { get; }
22  
23      public bool DateWithWeekday { get; }
24  
25      public List<string> CustomFormats { get; }
26  }