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