Skip to content

Commit

Permalink
Fix object type for AlternateEmails attribute, issue #98
Browse files Browse the repository at this point in the history
Update JsonObjects.cs
  • Loading branch information
bn-cap-01 authored Jul 18, 2024
1 parent e29b8c4 commit 43855c1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions 2LCS/JsonObjects.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using System;
using System;
using System.Collections.Generic;

namespace LCS.JsonObjects
Expand Down Expand Up @@ -395,7 +395,7 @@ public class InvitedBy
public object ADOauthCode { get; set; }
public string ADUserId { get; set; }
public List<string> AllEmails { get; set; }
public List<string> AlternateEmails { get; set; }
public object AlternateEmails { get; set; }
public int CreatedBy { get; set; }
public string CreatedDate { get; set; }//Todo
public string DisplayName { get; set; }
Expand Down Expand Up @@ -652,7 +652,7 @@ public class UserProfile
public object ADOauthCode { get; set; }
public string ADUserId { get; set; }
public List<string> AllEmails { get; set; }
public List<string> AlternateEmails { get; set; }
public object AlternateEmails { get; set; }
public int CreatedBy { get; set; }
public string CreatedDate { get; set; }//Todo
public string DisplayName { get; set; }
Expand Down Expand Up @@ -790,4 +790,4 @@ public class EnvironmentNotifications
public object EnvironmentNotificationDetails { get; set; }
public bool ShowEnvironmentNotifications { get; set; }
}
}
}

0 comments on commit 43855c1

Please sign in to comment.