2024-03-05 19:49:58 +08:00
|
|
|
namespace Parking_space_WebAPI.Entities;
|
2024-02-01 13:48:38 +08:00
|
|
|
|
|
|
|
using MessagePack;
|
|
|
|
using System.Text.Json.Serialization;
|
|
|
|
|
|
|
|
public class User
|
|
|
|
{
|
|
|
|
public int id { get; set; }
|
|
|
|
public string? firstname { get; set; }
|
|
|
|
public string? lastname { get; set; }
|
|
|
|
public string? username { get; set; }
|
|
|
|
|
|
|
|
[JsonIgnore]
|
|
|
|
public string? password { get; set; }
|
|
|
|
}
|