mirror of
https://github.com/leiurayer/downkyi.git
synced 2025-03-24 00:00:12 +08:00
11 lines
185 B
C#
11 lines
185 B
C#
using DownKyi.Models;
|
|
using System.Collections.Generic;
|
|
|
|
namespace DownKyi.Services
|
|
{
|
|
public interface IResolutionService
|
|
{
|
|
List<Resolution> GetResolution();
|
|
}
|
|
}
|