e79aa3c0ed
Former-commit-id: a2155e9bd80020e49e72e86c44da02a8ac0e57a4
36 lines
996 B
C#
36 lines
996 B
C#
//------------------------------------------------------------------------------
|
|
// <copyright file="LinqDataSourceEditData.cs" company="Microsoft">
|
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
// </copyright>
|
|
//------------------------------------------------------------------------------
|
|
|
|
namespace System.Web.UI.WebControls {
|
|
using System.Security.Permissions;
|
|
|
|
public class QueryableDataSourceEditData {
|
|
|
|
private object _newDataObject;
|
|
private object _originalDataObject;
|
|
|
|
public object NewDataObject {
|
|
get {
|
|
return _newDataObject;
|
|
}
|
|
set {
|
|
_newDataObject = value;
|
|
}
|
|
}
|
|
|
|
public object OriginalDataObject {
|
|
get {
|
|
return _originalDataObject;
|
|
}
|
|
set {
|
|
_originalDataObject = value;
|
|
}
|
|
}
|
|
|
|
}
|
|
}
|
|
|