24 lines
504 B
C#
24 lines
504 B
C#
using Newtonsoft.Json;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace AutoCatCore.Model
|
|
{
|
|
public class User
|
|
{
|
|
[Key]
|
|
[JsonProperty("email")]
|
|
public string Email { get; set; }
|
|
[JsonProperty("token")]
|
|
public string Token { get; set; }
|
|
[JsonIgnore]
|
|
public string FirebaseIdToken { get; set; }
|
|
[JsonIgnore]
|
|
public string FirebaseRefreshToken { get; set; }
|
|
}
|
|
}
|