Skip to content

Commit

Permalink
Added a Nick setter in BookmarkedConference
Browse files Browse the repository at this point in the history
-Renamed BookmarkedConference.cs to fix a typo in the filename
  • Loading branch information
kimimaru4000 authored and vitalyster committed Jul 20, 2022
1 parent 11667c1 commit 556f964
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ public string Nick
var nick = Element(XNamespace.Get(Namespaces.StorageBookmarks) + "nick");
return nick == null ? null : nick.Value;
}
set => SetAttributeValue(XNamespace.Get(Namespaces.StorageBookmarks) + "nick", value);
}

/// <summary>
Expand Down

0 comments on commit 556f964

Please sign in to comment.