From c916037773d7d3d8d37ca2c5a8899b7b728e377d Mon Sep 17 00:00:00 2001 From: Owen Fraser-Green Date: Tue, 23 Mar 2004 12:10:32 +0000 Subject: First checkin of the Mono bindings. --- mono/Custom.cs | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 mono/Custom.cs (limited to 'mono/Custom.cs') diff --git a/mono/Custom.cs b/mono/Custom.cs new file mode 100644 index 00000000..f96562b9 --- /dev/null +++ b/mono/Custom.cs @@ -0,0 +1,18 @@ +using System; + +using DBus; + +namespace DBus +{ + public struct Custom + { + public string Name; + public byte[] Data; + + public Custom(string name, byte[] data) + { + Name = name; + Data = data; + } + } +} -- cgit