14 lines
320 B
Markdown
14 lines
320 B
Markdown
public class LeadDataRequest
|
|
{
|
|
[DataMember(Name = "leadName")]
|
|
public string LeadName;
|
|
|
|
[DataMember(Name = "products")]
|
|
public List<ProductItem> Products;
|
|
|
|
[DataMember(Name = "distributorName")]
|
|
public string DistributorName;
|
|
|
|
[DataMember(Name = "distributorInn")]
|
|
public string DistributorInn;
|
|
} |