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.

12 lines
295 B
C#

namespace Expedience.Api.Db.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; }
}
}