I do not fully understand what should be in the Model , and what should be in the ViewModel .
For example, the task of parsing user messages. There is such a class:
class Post { public string Author { get; set; } public string Text { get; set; } public int LikeCount { get; set; } } Do I need to put a Get-request that picks up a page with a message, and regular pages that will tear out the necessary information into the same class, or should all this be located in PostVM?