shop_template_api/ARW.Model/Dto/Api/CustomerServices/CustomerServiceApiDto.cs
2023-10-21 19:18:58 +08:00

22 lines
485 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using ARW.Model.Models.Business.CustomerServices;
namespace ARW.Model.Dto.Api.CustomerServices
{
/// <summary>
/// 客服查询对象Api
///
/// @author lwh
/// @date 2023-10-21
/// </summary>
public class CustomerServiceQueryDtoApi
{
public string CustomerServiceName { get; set; }
public string CustomerServicePhone { get; set; }
}
}