summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Platform.Tizen/ExportCellAttribute.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Xamarin.Forms.Platform.Tizen/ExportCellAttribute.cs')
-rw-r--r--Xamarin.Forms.Platform.Tizen/ExportCellAttribute.cs12
1 files changed, 12 insertions, 0 deletions
diff --git a/Xamarin.Forms.Platform.Tizen/ExportCellAttribute.cs b/Xamarin.Forms.Platform.Tizen/ExportCellAttribute.cs
new file mode 100644
index 00000000..e0435ad0
--- /dev/null
+++ b/Xamarin.Forms.Platform.Tizen/ExportCellAttribute.cs
@@ -0,0 +1,12 @@
+using System;
+
+namespace Xamarin.Forms.Platform.Tizen
+{
+ [AttributeUsage(AttributeTargets.Assembly, AllowMultiple = true)]
+ public sealed class ExportCellAttribute : HandlerAttribute
+ {
+ public ExportCellAttribute(Type handler, Type target) : base(handler, target)
+ {
+ }
+ }
+}