- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace OrderSystem.Entity.ViewModel
- {
- public class ContractModel
- {
- public string ContractNo { get; set; }
- public int? Count { get; set; }
- public string Mobile { get; set; }
- public string CustomerName { get; set; }
- public string Status { get; set; }
- public List<OrderModel> OrderList { get; set; }
- }
- }
|