Archived
1
0
This repository has been archived on 2026-04-22. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
FoxTube/FoxTube.Core/Models/IRefreshable.cs
T
2019-12-03 18:44:29 +03:00

8 lines
111 B
C#

namespace FoxTube.Core.Models
{
public interface IRefreshable
{
void RefreshPage();
}
}