using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace EMIS.ViewModel.SystemView
{
public class FunctionCodeView
{
///
/// FunctionCode
///
public string FunctionCode { get; set; }
///
/// FunctionName
///
public string FunctionName { get; set; }
///
/// ParentFunctionCode
///
public string ParentFunctionCode { get; set; }
///
/// OrderNo
///
public short OrderNo { get; set; }
}
}