You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
382 B
C#
13 lines
382 B
C#
namespace Expedience.Infrastructure.Models
|
|
{
|
|
public class User
|
|
{
|
|
public int UserId { get; set; }
|
|
public int WorldId { get; set; }
|
|
public string UserHash { get; set; }
|
|
public string UserName { get; set; }
|
|
public DateTime CreatedAt { get; set; }
|
|
public List<DutyCompletionResult>? DutyCompletionResults { get; set; }
|
|
}
|
|
}
|