Properties define in Data- class and Work- class
I am new to Pega, and I was told it is a good practice to define independent properties in data- class.
For example,
normally I would have define properties like, In-class Org-Div-Work-CaseType as FirstName(text), LastName(text), Phone(phone), EmailID(email)
But it is suggested to define the above properties properly in Org-Div-Data-Customer as FirstName(text), LastName(text), Phone(phone), EmailID(email) and so on for others like
Org-Div-Data-Vehicles, Org-Div-Data-Address. and then defining page group to access these properties.
What is the significance of creating properties in such a way?
How it helps when the complexity of my application increases?