Replies: 1 comment 1 reply
-
I think this is overengineering things and making the API unnecessarily complex. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Replace tags literals like this:
to something like this with constants:
Add
ITaggable
interface withbool HasTag(string tagName)
,void SetTag(string tagName)
methods.First thing that came in mind.
Or maybe we can add
TagStorage
class that would look like this:And will be used in other types like this:
Seems like simple things, but should be a good addition.
Beta Was this translation helpful? Give feedback.
All reactions