Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 10 additions & 6 deletions Source/OpenSim.Data.Model/Core/AgentPref.cs
Original file line number Diff line number Diff line change
@@ -1,16 +1,20 @@
using System;
using System.Collections.Generic;
/* Copyright (c) 2025 Utopia Skye LLC

* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
*/

namespace OpenSim.Data.Model.Core;

public partial class AgentPref
{
public string PrincipalId { get; set; }
public string AccessPrefs { get; set; }
public string AccessPrefs { get; set; } = "M";
public double HoverHeight { get; set; }
public string Language { get; set; }
public bool? LanguageIsPublic { get; set; }
public string Language { get; set; } = "en-us";
public bool? LanguageIsPublic { get; set; } = true;
public int PermEveryone { get; set; }
public int PermGroup { get; set; }
public int PermNextOwner { get; set; }
public int PermNextOwner { get; set; } = 532480;
}
12 changes: 8 additions & 4 deletions Source/OpenSim.Data.Model/Core/Asset.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
using System;
using System.Collections.Generic;
/* Copyright (c) 2025 Utopia Skye LLC

* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
*/

namespace OpenSim.Data.Model.Core;

Expand All @@ -12,8 +16,8 @@ public partial class Asset
public bool Temporary { get; set; }
public byte[] Data { get; set; }
public string AssetId { get; set; } = "00000000-0000-0000-0000-000000000000";
public int? CreateTime { get; set; }
public int? CreateTime { get; set; } = 0;
public int? AccessTime { get; set; } = 0;
public int AssetFlags { get; set; }
public string CreatorId { get; set; }
public string CreatorId { get; set; } = String.Empty;
}
16 changes: 10 additions & 6 deletions Source/OpenSim.Data.Model/Core/Auth.cs
Original file line number Diff line number Diff line change
@@ -1,13 +1,17 @@
using System;
using System.Collections.Generic;
/* Copyright (c) 2025 Utopia Skye LLC

* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
*/

namespace OpenSim.Data.Model.Core;

public partial class Auth
{
public string Uuid { get; set; }
public string PasswordHash { get; set; }
public string PasswordSalt { get; set; }
public string WebLoginKey { get; set; }
public string AccountType { get; set; }
public string PasswordHash { get; set; } = string.Empty;
public string PasswordSalt { get; set; } = string.Empty;
public string WebLoginKey { get; set; } = string.Empty;
public string AccountType { get; set; } = "UserAccount";
}
8 changes: 6 additions & 2 deletions Source/OpenSim.Data.Model/Core/Avatar.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
using System;
using System.Collections.Generic;
/* Copyright (c) 2025 Utopia Skye LLC

* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
*/

namespace OpenSim.Data.Model.Core;

Expand Down
8 changes: 6 additions & 2 deletions Source/OpenSim.Data.Model/Core/Classified.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
using System;
using System.Collections.Generic;
/* Copyright (c) 2025 Utopia Skye LLC

* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
*/

namespace OpenSim.Data.Model.Core;

Expand Down
7 changes: 7 additions & 0 deletions Source/OpenSim.Data.Model/Core/EstateAllowedExperience.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
/* Copyright (c) 2025 Utopia Skye LLC

* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
*/

namespace OpenSim.Data.Model.Core;

public partial class EstateAllowedExperience
Expand Down
8 changes: 6 additions & 2 deletions Source/OpenSim.Data.Model/Core/EstateGroup.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
using System;
using System.Collections.Generic;
/* Copyright (c) 2025 Utopia Skye LLC

* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
*/

namespace OpenSim.Data.Model.Core;

Expand Down
7 changes: 7 additions & 0 deletions Source/OpenSim.Data.Model/Core/EstateKeyExperience.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
/* Copyright (c) 2025 Utopia Skye LLC

* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
*/

namespace OpenSim.Data.Model.Core;

public class EstateKeyExperience
Expand Down
8 changes: 6 additions & 2 deletions Source/OpenSim.Data.Model/Core/EstateManager.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
using System;
using System.Collections.Generic;
/* Copyright (c) 2025 Utopia Skye LLC

* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
*/

namespace OpenSim.Data.Model.Core;

Expand Down
10 changes: 7 additions & 3 deletions Source/OpenSim.Data.Model/Core/EstateMap.cs
Original file line number Diff line number Diff line change
@@ -1,10 +1,14 @@
using System;
using System.Collections.Generic;
/* Copyright (c) 2025 Utopia Skye LLC

* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
*/

namespace OpenSim.Data.Model.Core;

public partial class EstateMap
{
public string RegionId { get; set; }
public string RegionId { get; set; } = "00000000-0000-0000-0000-000000000000";
public int EstateId { get; set; }
}
14 changes: 9 additions & 5 deletions Source/OpenSim.Data.Model/Core/EstateSetting.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
using System;
using System.Collections.Generic;
/* Copyright (c) 2025 Utopia Skye LLC

* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
*/

namespace OpenSim.Data.Model.Core;

Expand Down Expand Up @@ -29,8 +33,8 @@ public partial class EstateSetting
public string AbuseEmail { get; set; }
public string EstateOwner { get; set; }
public sbyte DenyMinors { get; set; }
public sbyte AllowLandmark { get; set; }
public sbyte AllowParcelChanges { get; set; }
public sbyte AllowSetHome { get; set; }
public sbyte AllowLandmark { get; set; } = 1;
public sbyte AllowParcelChanges { get; set; } = 1;
public sbyte AllowSetHome { get; set; } = 1;
public sbyte AllowEnviromentOverride { get; set; }
}
8 changes: 6 additions & 2 deletions Source/OpenSim.Data.Model/Core/EstateUser.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
using System;
using System.Collections.Generic;
/* Copyright (c) 2025 Utopia Skye LLC

* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
*/

namespace OpenSim.Data.Model.Core;

Expand Down
10 changes: 7 additions & 3 deletions Source/OpenSim.Data.Model/Core/Estateban.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
using System;
using System.Collections.Generic;
/* Copyright (c) 2025 Utopia Skye LLC

* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
*/

namespace OpenSim.Data.Model.Core;

Expand All @@ -10,6 +14,6 @@ public partial class Estateban
public string BannedIp { get; set; }
public string BannedIpHostMask { get; set; }
public string BannedNameMask { get; set; }
public string BanningUuid { get; set; }
public string BanningUuid { get; set; } = "00000000-0000-0000-0000-000000000000";
public int BanTime { get; set; }
}
7 changes: 7 additions & 0 deletions Source/OpenSim.Data.Model/Core/Experience.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
/* Copyright (c) 2025 Utopia Skye LLC

* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
*/

namespace OpenSim.Data.Model.Core;

public partial class Experience
Expand Down
7 changes: 7 additions & 0 deletions Source/OpenSim.Data.Model/Core/ExperienceKVP.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
/* Copyright (c) 2025 Utopia Skye LLC

* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
*/

namespace OpenSim.Data.Model.Core;

public partial class ExperienceKVP
Expand Down
7 changes: 7 additions & 0 deletions Source/OpenSim.Data.Model/Core/ExperiencePermission.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
/* Copyright (c) 2025 Utopia Skye LLC

* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
*/

namespace OpenSim.Data.Model.Core;

public partial class ExperiencePermission
Expand Down
14 changes: 9 additions & 5 deletions Source/OpenSim.Data.Model/Core/Friend.cs
Original file line number Diff line number Diff line change
@@ -1,12 +1,16 @@
using System;
using System.Collections.Generic;
/* Copyright (c) 2025 Utopia Skye LLC

* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
*/

namespace OpenSim.Data.Model.Core;

public partial class Friend
{
public string PrincipalId { get; set; }
public string PrincipalId { get; set; } = "00000000-0000-0000-0000-000000000000";
public string Friend1 { get; set; }
public string Flags { get; set; }
public string Offered { get; set; }
public string Flags { get; set; } = "0";
public string Offered { get; set; } = "0";
}
14 changes: 9 additions & 5 deletions Source/OpenSim.Data.Model/Core/Fsasset.cs
Original file line number Diff line number Diff line change
@@ -1,13 +1,17 @@
using System;
using System.Collections.Generic;
/* Copyright (c) 2025 Utopia Skye LLC

* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
*/

namespace OpenSim.Data.Model.Core;

public partial class Fsasset
{
public string Id { get; set; }
public string Name { get; set; }
public string Description { get; set; }
public string AssetId { get; set; }
public string Name { get; set; } = String.Empty;
public string Description { get; set; } = String.Empty;
public int Type { get; set; }
public string Hash { get; set; }
public int CreateTime { get; set; }
Expand Down
8 changes: 6 additions & 2 deletions Source/OpenSim.Data.Model/Core/GloebitSubscription.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
using System;
using System.Collections.Generic;
/* Copyright (c) 2025 Utopia Skye LLC

* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
*/

namespace OpenSim.Data.Model.Core;

Expand Down
8 changes: 6 additions & 2 deletions Source/OpenSim.Data.Model/Core/GloebitTransaction.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
using System;
using System.Collections.Generic;
/* Copyright (c) 2025 Utopia Skye LLC

* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
*/

namespace OpenSim.Data.Model.Core;

Expand Down
8 changes: 6 additions & 2 deletions Source/OpenSim.Data.Model/Core/GloebitUser.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
using System;
using System.Collections.Generic;
/* Copyright (c) 2025 Utopia Skye LLC

* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
*/

namespace OpenSim.Data.Model.Core;

Expand Down
26 changes: 15 additions & 11 deletions Source/OpenSim.Data.Model/Core/GridUser.cs
Original file line number Diff line number Diff line change
@@ -1,18 +1,22 @@
using System;
using System.Collections.Generic;
/* Copyright (c) 2025 Utopia Skye LLC

* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
*/

namespace OpenSim.Data.Model.Core;

public partial class GridUser
{
public string UserId { get; set; }
public string HomeRegionId { get; set; }
public string HomePosition { get; set; }
public string HomeLookAt { get; set; }
public string LastRegionId { get; set; }
public string LastPosition { get; set; }
public string LastLookAt { get; set; }
public string Online { get; set; }
public string Login { get; set; }
public string Logout { get; set; }
public string HomeRegionId { get; set; } = "00000000-0000-0000-0000-000000000000";
public string HomePosition { get; set; } = "<0,0,0>";
public string HomeLookAt { get; set; } = "<0,0,0>";
public string LastRegionId { get; set; } = "00000000-0000-0000-0000-000000000000";
public string LastPosition { get; set; } = "<0,0,0>";
public string LastLookAt { get; set; } = "<0,0,0>";
public string Online { get; set; } = "false";
public string Login { get; set; } = "0";
public string Logout { get; set; } = "0";
}
18 changes: 11 additions & 7 deletions Source/OpenSim.Data.Model/Core/HgTravelingDatum.cs
Original file line number Diff line number Diff line change
@@ -1,15 +1,19 @@
using System;
using System.Collections.Generic;
/* Copyright (c) 2025 Utopia Skye LLC

* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
*/

namespace OpenSim.Data.Model.Core;

public partial class HgTravelingDatum
{
public string SessionId { get; set; }
public string UserId { get; set; }
public string GridExternalName { get; set; }
public string ServiceToken { get; set; }
public string ClientIpaddress { get; set; }
public string MyIpaddress { get; set; }
public DateTime Tmstamp { get; set; }
public string GridExternalName { get; set; } = String.Empty;
public string ServiceToken { get; set; } = String.Empty;
public string ClientIpaddress { get; set; } = String.Empty;
public string MyIpaddress { get; set; } = String.Empty;
public DateTime Tmstamp { get; set; } = DateTime.Now;
}
Loading
Loading