Hello, I have an application where users can store items. Now each type of account can store a limited amount of items. For example basic account can store 25 items, premium can store 50 and max can store unlimited items.
Now my question is what would be the best approach to do this?
At first I was thinking of just making different roles for each "account type" but I guess that's not very flexible. I guess the other option is to make a profile property that has the max number of items an account can have. But maybe the profile property has some other limitations I don't see at the moment?
Any input on this is greatly appreciated.