mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-20 15:55:25 +03:00
Add GPL modules
This commit is contained in:
10
MediaBrowser.Model/Threading/ITimer.cs
Normal file
10
MediaBrowser.Model/Threading/ITimer.cs
Normal file
@@ -0,0 +1,10 @@
|
||||
using System;
|
||||
|
||||
namespace MediaBrowser.Model.Threading
|
||||
{
|
||||
public interface ITimer : IDisposable
|
||||
{
|
||||
void Change(TimeSpan dueTime, TimeSpan period);
|
||||
void Change(int dueTimeMs, int periodMs);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user