[NUI] Change GetDefaultWindow() to static func (#900)
[platform/core/csapi/tizenfx.git] / src / Tizen.NUI / src / internal / XamlBinding / EffectiveFlowDirection.cs
1 using System;
2
3 namespace Tizen.NUI.Binding
4 {
5     [Flags]
6     internal enum EffectiveFlowDirection
7     {
8         RightToLeft = 1 << 0,
9         Explicit = 1 << 1,
10     }
11 }