using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace EMIS.ViewModel.PaymentManage
{
public class PaymentFormlulaView
{
///
/// PaymentFormulaID
///
public System.Guid PaymentFormulaID { get; set; }
///
/// Name
///
public string Name { get; set; }
///
/// StudentCountRateFormunla
///
public string StudentCountRateFormunla { get; set; }
///
/// PaymentFormula
///
public string PaymentFormula { get; set; }
///
/// IsDefault
///
public Nullable IsDefault { get; set; }
}
}