17 lines
376 B
C#
17 lines
376 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace dccdc.Models
|
|
{
|
|
public class ProfessionalChargeProjectModel
|
|
{
|
|
public int id { get; set; }
|
|
public string physical_num { get; set; }
|
|
public string charge_project_name { get; set; }
|
|
public double charge_project_price { get; set; }
|
|
|
|
}
|
|
}
|