-
-
Notifications
You must be signed in to change notification settings - Fork 336
Expand file tree
/
Copy pathModuleModelFactoryOptions.cs
More file actions
25 lines (17 loc) · 802 Bytes
/
Copy pathModuleModelFactoryOptions.cs
File metadata and controls
25 lines (17 loc) · 802 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
using System.Collections.Generic;
namespace RevEng.Core.Abstractions
{
public class ModuleModelFactoryOptions
{
public IEnumerable<string> Modules { get; set; }
public IEnumerable<string> ModulesUsingLegacyDiscovery { get; set; }
#pragma warning disable CA2227 // Collection properties should be read only
public IDictionary<string, string> MappedModules { get; set; }
public IDictionary<string, bool> ModulesGeneratingEmptyResultTypes { get; set; }
#pragma warning restore CA2227 // Collection properties should be read only
public bool FullModel { get; set; }
public bool DiscoverMultipleResultSets { get; set; }
public bool UseLegacyResultSetDiscovery { get; set; }
public bool UseDateOnlyTimeOnly { get; set; }
}
}