22 lines
485 B
C#
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; }
|
|
}
|
|
|
|
}
|