15 lines
337 B
C#
15 lines
337 B
C#
|
namespace WebApi_data_value.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; }
|
||
|
}
|