8 lines
227 B
C#
8 lines
227 B
C#
public class UserProfile
|
|
{
|
|
public int Id { get; set; }
|
|
public string KratosId { get; set; } = ""; // link to Kratos user
|
|
public string FullName { get; set; } = "";
|
|
public string NationalId { get; set; } = "";
|
|
}
|