15 lines
309 B
C#
15 lines
309 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Dynamic;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Jambo.Producer.Application.Queries
|
|
{
|
|
public interface IBlogQueries
|
|
{
|
|
Task<ExpandoObject> GetBlogAsync(Guid id);
|
|
|
|
Task<IEnumerable<ExpandoObject>> GetBlogsAsync();
|
|
}
|
|
}
|