Headless CMS and Content Managment Hub
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

24 lines
700 B

// ==========================================================================
// MongoPositions.cs
// PinkParrot Headless CMS
// ==========================================================================
// Copyright (c) PinkParrot Group
// All rights reserved.
// ==========================================================================
using System.Runtime.Serialization;
using MongoDB.Bson;
using MongoDB.Bson.Serialization.Attributes;
namespace PinkParrot.Read.Repositories.Implementations.Mongo
{
[DataContract]
public class MongoPosition
{
[BsonId]
public ObjectId Id { get; set; }
[BsonElement]
public int? Position { get; set; }
}
}