-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Started upgrading HoloOASIS Provider to the latest HoloNET version …
…(v2.1.2). - HcAvatar now extends HoloNETAuditEntryBaseClass. - Removed id & user_id from HcAvatar & IHCAvatar interface. - Renamed HcProfile to HcAvatar. - Added HcAvatar property to HoloOASIS. - HcAvatar is now initialized in the Initialize method in HoloOASIS. - Removed older redudant HoloNET code. - Updated LoadAvatarAsync method to work with latest HoloNET code (HcAvatar/HoloNETAuditEntryBaseClass).
- Loading branch information
Showing
6 changed files
with
950 additions
and
45 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
34 changes: 34 additions & 0 deletions
34
NextGenSoftware.OASIS.API.Providers.HoloOASIS.Core/HcProfile - Copy.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
| ||
//using NextGenSoftware.OASIS.API.Core.Enums; | ||
//using System; | ||
|
||
//namespace NextGenSoftware.OASIS.API.Providers.HoloOASIS | ||
//{ | ||
// //public class Avatar : API.Core.Avatar, IAvatar | ||
// //{ | ||
// // public string HcAddressHash { get; set; } | ||
// //} | ||
|
||
|
||
// public class HcAvatar : IHcAvatar | ||
// { | ||
// public Guid id { get; set; } | ||
// public Guid user_id { get; set; } //TODO: Remember to add this to the HC Rust code... | ||
// public string username { get; set; } | ||
// public string password { get; set; } | ||
// public string email { get; set; } | ||
// public string title { get; set; } | ||
// public string first_name { get; set; } | ||
// public string last_name { get; set; } | ||
// public string dob { get; set; } | ||
// public string address { get; set; } | ||
// // public int Karma { get; private set; } | ||
// public int karma { get; set; } //TODO: This really needs to have a private setter but in the HoloOASIS provider it needs to copy the object along with each property... would prefer another work around if possible? | ||
// public int level { get; set; } | ||
// public string hc_address_hash { get; set; } | ||
|
||
// public string provider_key { get; set; } | ||
|
||
// public HolonType holon_type { get; set; } | ||
// } | ||
//} |
Oops, something went wrong.