[NUI] Change GetDefaultWindow() to static func (#900)
[platform/core/csapi/tizenfx.git] / src / Tizen.NUI / src / internal / XamlBinding / ITimer.cs
1 using System;
2
3 namespace Tizen.NUI.Binding
4 {
5     //this will go once Timer is included in Pcl profiles
6     internal interface ITimer
7     {
8         void Change(int dueTime, int period);
9         void Change(long dueTime, long period);
10         void Change(TimeSpan dueTime, TimeSpan period);
11         void Change(uint dueTime, uint period);
12     }
13 }