mirror of
https://gitlab.freedesktop.org/dbus/dbus.git
synced 2026-01-14 16:00:27 +01:00
18 lines
226 B
C#
18 lines
226 B
C#
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;
|
|
}
|
|
}
|
|
}
|