TomatenMusic-V2/TomatenMusic/Auth/Entities/User.cs
Tim Müller 147eed234f INIT
2022-03-29 22:12:22 +02:00

14 lines
318 B
C#

namespace TomatenMusic_Api.Auth.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; }
}