I have a select in the database that loads several items and loads everything into one model. The point is that one of the items, depending on how the select is done, is brought up with different type. Ex:
The property in the model:
public int procodigo { get; set; }
The content to be loaded in this property can be int or decimal, depending on the client action.
I could create two models, but I believe it can be kind of messed up.
Thank you in advance!