-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
fadc9b5
commit 4bec5a8
Showing
12 changed files
with
139 additions
and
111 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
using Microsoft.Extensions.Options; | ||
using MorganStanley.ComposeUI.Fdc3.AppDirectory; | ||
using MorganStanley.ComposeUI.Fdc3.DesktopAgent.DependencyInjection; | ||
|
||
namespace MorganStanley.ComposeUI.Shell.Fdc3; | ||
|
||
/// <summary> | ||
/// Configuration root for FDC3 features. This object is configured under the <c>FDC3</c> section. | ||
/// </summary> | ||
public class Fdc3Options : IOptions<Fdc3Options> | ||
{ | ||
/// <summary> | ||
/// When set to <value>true</value>, it will enable Fdc3 backend service. | ||
/// </summary> | ||
public bool EnableFdc3 { get; set; } | ||
|
||
/// <summary> | ||
/// Options for the FDC3 Desktop Agent | ||
/// </summary> | ||
public Fdc3DesktopAgentOptions DesktopAgent { get; set; } = new(); | ||
|
||
/// <summary> | ||
/// Options for the FDC3 App Directory | ||
/// </summary> | ||
public AppDirectoryOptions AppDirectory { get; set; } = new(); | ||
|
||
/// <inheritdoc /> | ||
public Fdc3Options Value => this; | ||
} |
Oops, something went wrong.