Show requestItem.cs syntax highlighted
using System;
using System.Collections.Generic;
using System.Text;
namespace DemoClientApp
{
class requestItem
{
public String requestXsl;
public String DataGridXsl;
public requestItem(String reqXsl, String gridXsl)
{
this.DataGridXsl = gridXsl;
this.requestXsl = reqXsl;
}
}
}
See more files for this project here