[NUI] Add Tizen.NUI.XamlBuild module
[platform/core/csapi/tizenfx.git] / src / Tizen.NUI.XamlBuild / src / internal / Xaml / ProvideCompiledAttribute.cs
1 using System;
2
3 namespace Tizen.NUI.Xaml
4 {
5     [AttributeUsage(AttributeTargets.Class, AllowMultiple = false, Inherited = true)]
6     internal sealed class ProvideCompiledAttribute : Attribute
7     {
8         public string CompiledVersion { get; }
9
10         public ProvideCompiledAttribute (string compiledVersion)
11         {
12             CompiledVersion = compiledVersion;
13         }
14     }
15 }