[NUI] Add xaml and xamlbing testcases
[platform/core/csapi/tizenfx.git] / test / Tizen.NUI.Tests / Tizen.NUI.Devel.Tests / PreserveAttribute.cs
1 using System;
2 using System.Collections.Generic;
3 using System.Text;
4
5 namespace Tizen.NUI.Devel.Tests
6 {
7     [AttributeUsage(AttributeTargets.All)]
8     public class PreserveAttribute : Attribute
9     {
10         public bool AllMembers;
11         public bool Conditional;
12
13         public PreserveAttribute()
14         {
15         }
16
17         public PreserveAttribute(bool allMembers, bool conditional)
18         {
19             AllMembers = allMembers;
20             Conditional = conditional;
21         }
22     }
23 }