public static LikeResponse Translate(Like entity) =>
 LikeResponse.Create(
     articleId: entity.ArticleId,
     count: entity.Count
     );