Parking_space_ASPNET/Parking_spaces/Entities/User.cs

14 lines
315 B
C#
Raw Permalink Normal View History

2024-02-01 11:37:15 +08:00
namespace Parking_spaces.Entities;
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; }
}