AdminPanel/NetinaShop.AdminPanel.PWA/Services/RestServices/IBlogRestApi.cs

11 lines
303 B
C#

namespace NetinaShop.AdminPanel.PWA.Services.RestServices;
public interface IBlogRestApi
{
[Get("")]
Task<List<BlogSDto>> ReadAll();
[Get("")]
Task<List<BlogSDto>> ReadAll([Query] int page);
[Get("")]
Task<List<BlogSDto>> ReadAll([Query] int page, [Query] string blogName);
}