15 lines
336 B
C#
15 lines
336 B
C#
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; }
|
|
}
|
|
} |