31 lines
916 B
C#
31 lines
916 B
C#
using System.Runtime.Serialization;
|
|
|
|
namespace CRM.Core.DTO.Res
|
|
{
|
|
[DataContract]
|
|
public class AssignDto
|
|
{
|
|
public AssignDto(decimal eid, int salegroupid, int allocations, int todayallocations, int quantity, int tgquantity)
|
|
{
|
|
this.eid = eid;
|
|
this.salegroupid = salegroupid;
|
|
this.allocations = allocations;
|
|
this.todayallocations = todayallocations;
|
|
this.quantity = quantity;
|
|
this.tgquantity = tgquantity;
|
|
}
|
|
|
|
[DataMember]
|
|
public decimal eid { get; set; }
|
|
[DataMember]
|
|
public int salegroupid { get; set; }
|
|
[DataMember]
|
|
public int allocations { get; set; }
|
|
[DataMember]
|
|
public int todayallocations { get; set; }
|
|
[DataMember]
|
|
public int quantity { get; set; }
|
|
[DataMember]
|
|
public int tgquantity { get; set; }
|
|
}
|
|
} |