parking-webapi/WebApi_data_value/Entities/User.cs

15 lines
340 B
C#
Raw Permalink Normal View History

2024-09-28 01:25:42 +08:00
namespace Parking_space_WebAPI.Entities;
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; }
}