summaryrefslogtreecommitdiffstats
path: root/api/WhatApi/Tables/User.cs
blob: 0ebe9b623562c709c35c281ec3c6bb3d1fed0e5b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
namespace WhatApi.Tables;

public class User
{
    public Guid Id { get; set; }
    public string Name { get; set; }
    public string Email { get; set; }
    public string Password { get; set; }
    public DateTime Created { get; set; }
    public DateTime? LastSeen { get; set; }
    public IEnumerable<Place> Places { get; set; }
}