Beispiel #1
0
 public static CommentLarge FromComment(Comment comment, string imageServer)
 {
     return(new CommentLarge
     {
         CommentId = comment.CommentId,
         UpTime = comment.UpTime,
         Content = comment.Content,
         User = UserMedium.FromUser(comment.User, imageServer)
     });
 }