mirror of
https://github.com/LBPUnion/ProjectLighthouse.git
synced 2025-07-23 05:31:29 +00:00
Fix typos in privacy settings element names (#884)
* Fix typos in privacy settings element names * Remove redundant nullable directive
This commit is contained in:
parent
495cba6a53
commit
f09bde1ab1
1 changed files with 2 additions and 3 deletions
|
@ -1,4 +1,3 @@
|
||||||
#nullable enable
|
|
||||||
using System.Xml.Serialization;
|
using System.Xml.Serialization;
|
||||||
using LBPUnion.ProjectLighthouse.Types.Serialization;
|
using LBPUnion.ProjectLighthouse.Types.Serialization;
|
||||||
|
|
||||||
|
@ -8,9 +7,9 @@ namespace LBPUnion.ProjectLighthouse.Servers.GameServer.Types.Users;
|
||||||
[XmlType("privacySettings")]
|
[XmlType("privacySettings")]
|
||||||
public class PrivacySettings : ILbpSerializable
|
public class PrivacySettings : ILbpSerializable
|
||||||
{
|
{
|
||||||
[XmlElement("levelVisiblity")]
|
[XmlElement("levelVisibility")]
|
||||||
public string? LevelVisibility { get; set; }
|
public string? LevelVisibility { get; set; }
|
||||||
|
|
||||||
[XmlElement("profileVisiblity")]
|
[XmlElement("profileVisibility")]
|
||||||
public string? ProfileVisibility { get; set; }
|
public string? ProfileVisibility { get; set; }
|
||||||
}
|
}
|
Loading…
Add table
Add a link
Reference in a new issue