UUID.Guid needs a public setter after all because of limitations in XmlSerializer

At some point we may switch to DataContractSerializer which is much more flexible
This commit is contained in:
Cinder
2017-03-12 20:56:36 -05:00
parent 867d9d2211
commit 437464bb14

View File

@@ -37,7 +37,7 @@ namespace OpenMetaverse
public struct UUID : IComparable<UUID>, IEquatable<UUID>
{
/// <summary>The System.Guid object this struct wraps around</summary>
public Guid Guid { get; internal set; }
public Guid Guid { get; set; }
#region Constructors