18 lines
363 B
C#
18 lines
363 B
C#
namespace Crm.Core.External.Web.Models
|
|
{
|
|
public class CreateCustomerOrderDto
|
|
{
|
|
public string? Appid { get; set; }
|
|
|
|
public string? Resid { get; set; }
|
|
|
|
public decimal? Eid { get; set; }
|
|
|
|
public decimal? Typeid { get; set; }
|
|
|
|
public string? Content { get; set; }
|
|
|
|
public bool? AddTag { get; set; }
|
|
}
|
|
}
|