Skip to content

Commit

Permalink
add GetTags to AndroidUserManager
Browse files Browse the repository at this point in the history
  • Loading branch information
emawby committed Dec 19, 2023
1 parent f238b51 commit db58658
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions OneSignalSDK.DotNet.Android/AndroidUserManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ public void Initialize()
public void AddTags(IDictionary<string, string> tags) => OneSignalNative.User.AddTags(tags);
public void RemoveTag(string key) => OneSignalNative.User.RemoveTag(key);
public void RemoveTags(params string[] keys) => OneSignalNative.User.RemoveTags(keys);
public IDictionary<string, string> GetTags() => OneSignalNative.User.Tags;
}

public class AndroidPushSubscription : IPushSubscription
Expand Down

0 comments on commit db58658

Please sign in to comment.