Files
song-of-the-day/song_of_the_day/LDAPIntegration/Data/LdapUser.cs

7 lines
189 B
C#

public class LdapUser
{
public string? UserId { get; set; }
public string? FirstName { get; set; }
public string? LastName { get; set; }
public string? Email { get; set; }
}