I’m currently doing a custom attribute, and did some custom classes for one of my ASP.NET MVC project.
I was wondering, is there a dedicated location to put them? I mean, some correct path naming or something.
Like controllers goes in Controllers\, models in Models\, etc…
Any suggestion is welcome!
Thanks!
If those attributes represent custom action filters I would put them into the
Filterssibfolder. If they represent validator data annotations, into theValidatorsfolder, … So based on their function I would find a name.