12 lines
176 B
C#
Raw Normal View History

namespace System.Web.DynamicData {
public enum DynamicDataSourceOperation {
Delete,
Insert,
Select,
Update,
ContextCreate
}
}