28 lines
731 B
C#
28 lines
731 B
C#
using System.Collections.Generic;
|
|
|
|
namespace CompanyManagment.App.Contracts.Report;
|
|
|
|
public class AccountResults
|
|
{
|
|
public long AccountId { get; set; }
|
|
public string AccountFullName { get; set; }
|
|
|
|
public List<long> WorkshopList { get; set; }
|
|
|
|
//public int ContractToBe { get; set; }
|
|
//public int CheckoutoBe { get; set; }
|
|
|
|
public int CheckoutDonePercent { get; set;}
|
|
public int ContractDonePercent { get; set; }
|
|
|
|
public int CheckoutSignPercent { get; set; }
|
|
public int ContractSignPercent { get; set; }
|
|
|
|
//public int ContractDone { get; set; }
|
|
//public int ContractSignDone { get; set; }
|
|
|
|
//public int CheckoutDone { get; set; }
|
|
//public int CheckoutSignDone { get;set; }
|
|
|
|
|
|
} |