generated from ricardo/MVCLogin
21 lines
536 B
C#
21 lines
536 B
C#
using MongoDB.Bson;
|
|
using MongoDB.Bson.Serialization.Attributes;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using static System.Runtime.InteropServices.JavaScript.JSType;
|
|
|
|
namespace Postall.Domain.Entities
|
|
{
|
|
public class UserSocialData
|
|
{
|
|
[BsonId]
|
|
public ObjectId Id { get; set; }
|
|
public string UserId { get; set; }
|
|
public string GoogleToken { get; set; }
|
|
public FacebookToken FacebookToken { get; set; }
|
|
}
|
|
}
|