namespace Prefab.Shared; /// /// Provides configuration options for a module client, including transport selection and base address settings. /// public sealed class ModuleClientOptions { public ModuleClientTransport Transport { get; set; } = ModuleClientTransport.InProcess; public Uri? BaseAddress { get; set; } }