12 lines
347 B
C#
12 lines
347 B
C#
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; }
|
|
}
|