forked from nhabuiduc/TypescriptSyntaxPaste
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathISettingStore.cs
More file actions
22 lines (20 loc) · 734 Bytes
/
Copy pathISettingStore.cs
File metadata and controls
22 lines (20 loc) · 734 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/*
* Copyright (c) 2019-2021 João Pedro Martins Neves (shivayl) - All Rights Reserved.
*
* CSharpToTypescript is licensed under the GPLv3.0 license (GNU General Public License v3.0),
* located in the root of this project, under the name "LICENSE.md".
*
*/
using CSharpToTypescript.VSIX;
namespace CSharpToTypescript
{
public interface ISettingStore
{
bool AddIPrefixInterfaceDeclaration { get; set; }
bool IsConvertListToArray { get; set; }
bool IsConvertMemberToCamelCase { get; set; }
bool IsConvertToInterface { get; set; }
bool IsInterfaceOptionalProperties { get; set; }
TypeNameReplacementData[] ReplacedTypeNameArray { get; set; }
}
}