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-02 16:52:49 +03:00

14 lines
228 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace FoxTube.Core.Models
{
public interface IRefreshable
{
void RefreshPage();
}
}