Init
This commit is contained in:
11
Prefab.Shared/ModuleClientOptions.cs
Normal file
11
Prefab.Shared/ModuleClientOptions.cs
Normal file
@@ -0,0 +1,11 @@
|
||||
namespace Prefab.Shared;
|
||||
|
||||
/// <summary>
|
||||
/// Provides configuration options for a module client, including transport selection and base address settings.
|
||||
/// </summary>
|
||||
public sealed class ModuleClientOptions
|
||||
{
|
||||
public ModuleClientTransport Transport { get; set; } = ModuleClientTransport.InProcess;
|
||||
|
||||
public Uri? BaseAddress { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user