19 lines
456 B
C#
19 lines
456 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace dccdc.Models
|
|
{
|
|
public class charge_detailModel
|
|
{
|
|
public int id { get; set; }
|
|
public int chargeid { get; set; }
|
|
public string projectid { get; set; }
|
|
public string projectname { get; set; }
|
|
public decimal money { get; set; }
|
|
public int count { get; set; }
|
|
public int pid { get; set; }
|
|
}
|
|
}
|