I have a User table where I keep the profile information of the user along with some system generated columns and password.
I am using a model to query the database and send the result to the user. User modifies the profile information and send the request which I am using the same Model to deserialize. But I don't want the user to change those system generated fields.
What should I do?