0% found this document useful (0 votes)
6 views1 page

LookupData Cs

Uploaded by

devi das
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
6 views1 page

LookupData Cs

Uploaded by

devi das
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 1

26/11/2024 11:09 LookupData.

cs

using System;
using System.Collections.Generic;
using System.Runtime.Serialization;
using SharePointStu.LookupField.Code.DataContracts.Base;

namespace SharePointStu.LookupField.DataContracts
{
[DataContract, Serializable]
public class ExtendedLookupData : BaseDataContract
{
public ExtendedLookupData()
{
SavedDisplayValues = new Dictionary<int, string>();
}

/// <summary>
/// Id for current process lookup item's Web.
/// </summary>
[DataMember]
public Guid WebId { get; set; }

/// <summary>
/// Id for current process lookup item's list.
/// </summary>
[DataMember]
public Guid ListId { get; set; }

/// <summary>
/// Id for current process lookup item's display column.
/// </summary>
[DataMember]
public Guid DisplayId { get; set; }

/// <summary>
/// Id for current process lookup item's value column.
/// </summary>
[DataMember]
public Guid ValueId { get; set; }

/// <summary>
/// List of saved display values, indexed by item id.
/// </summary>
[DataMember]
public Dictionary<int, string> SavedDisplayValues { get; set; }
}
}

file:///C:/Users/amal.bahrini/Desktop/Data cloud/LookupData.cs 1/1

You might also like