POST /api/Article/create-article
curl \
 --request POST 'http://mamaguide.runasp.net/api/Article/create-article' \
 --header "Content-Type: application/json" \
 --data '{"title":"string","content":"string"}'
curl \
 --request POST 'http://mamaguide.runasp.net/api/Article/create-article' \
 --header "Content-Type: text/json"
curl \
 --request POST 'http://mamaguide.runasp.net/api/Article/create-article' \
 --header "Content-Type: application/*+json"
Request examples
{
  "title": "string",
  "content": "string"
}