using System; using MongoDB.Bson.Serialization.Attributes; namespace EnVisage.Code.DAL.Mongo { [BsonIgnoreExtraElements] [Serializable] public class MixTeamLayoutRowItem { public Guid TeamId { get; set; } public int Row { get; set; } public int Index { get; set; } public Guid ProjectId { get; set; } } }