19 lines
351 B
C#
19 lines
351 B
C#
using System.Text.Json.Serialization;
|
|
using Realms;
|
|
|
|
namespace AutoCatCore.Model
|
|
{
|
|
public class User: RealmObject
|
|
{
|
|
public string Email { get; set; } = "";
|
|
|
|
public string? Token { get; set; } = null;
|
|
|
|
[JsonIgnore]
|
|
public string? FirebaseIdToken { get; init; }
|
|
|
|
[JsonIgnore]
|
|
public string? FirebaseRefreshToken { get; init; }
|
|
}
|
|
}
|