17 lines
461 B
C#
17 lines
461 B
C#
namespace Microsoft.eShopOnContainers.Services.Locations.API.Model
|
|
{
|
|
using MongoDB.Bson;
|
|
using MongoDB.Bson.Serialization.Attributes;
|
|
using System;
|
|
|
|
public class UserLocation
|
|
{
|
|
[BsonIgnoreIfDefault]
|
|
[BsonRepresentation(BsonType.ObjectId)]
|
|
public string Id { get; set; }
|
|
public string UserId { get; set; }
|
|
public int LocationId { get; set; }
|
|
public DateTime UpdateDate { get; set; }
|
|
}
|
|
}
|