Skip to content

Instantly share code, notes, and snippets.

@mortezadalil
Created December 8, 2019 09:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mortezadalil/cd2f96077edf2b110fa1dc022971af09 to your computer and use it in GitHub Desktop.
Save mortezadalil/cd2f96077edf2b110fa1dc022971af09 to your computer and use it in GitHub Desktop.
using System.Collections.Generic;
using System.Text;
using Cms.Core.Dtos.Generals;
using Cms.Core.Dtos.UseCaseDtos;
namespace Cms.Core.IUseCases
{
public interface IAddPostUseCase : IUseCaseRequestHandler<AddPostRequest, GenericResponse<AddPostResponse>>
{
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment