diff --git a/src/Elmish.WPF/Binding.fs b/src/Elmish.WPF/Binding.fs
index 33d17008..d3c07694 100644
--- a/src/Elmish.WPF/Binding.fs
+++ b/src/Elmish.WPF/Binding.fs
@@ -116,6 +116,16 @@ module Binding =
OneWayToSource.id
|> createBindingT
+ ///
+ /// Strongly-typed bindings that update both ways
+ ///
+ module TwoWayT =
+
+ /// Elemental instance of a two-way binding.
+ let id<'a> : string -> Binding<'a, 'a, 'a> =
+ TwoWay.id
+ |> createBindingT
+
///
/// Strongly-typed bindings that dispatch messages from the view.
///