17 lines
354 B
C#
17 lines
354 B
C#
using System.ComponentModel.DataAnnotations;
|
|
using System.Text.Json.Serialization;
|
|
|
|
namespace AutoCatCore.Model
|
|
{
|
|
public class User
|
|
{
|
|
[Key]
|
|
public string Email { get; set; }
|
|
public string? Token { get; set; }
|
|
[JsonIgnore]
|
|
public string? FirebaseIdToken { get; set; }
|
|
[JsonIgnore]
|
|
public string? FirebaseRefreshToken { get; set; }
|
|
}
|
|
}
|