13 lines
426 B
C#

using Microsoft.EntityFrameworkCore;
public class User
{
public int UserId { get; set; }
public string? SignalMemberId { get; set; }
public string? Name { get; set; }
public string? NickName { get; set; }
public bool IsIntroduced { get; set; }
public bool AssociationInProgress { get; set; }
public string? LdapUserName { get; set; }
public bool WasChosenForSuggestionThisRound { get; set; }
}