This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace XGL.Models.Model
{
/// <summary>
/// 设备报修 equipmentCode(设备编码)、factory(工厂源)、userName(用户账号)、phoneNumber(联系方式)、userNickName(用户昵称)
/// </summary>
public class MachineRepairModel
public string equipmentCode { get; set; }
public string factory { get; set; }
public string userName { get; set; }
public string phoneNumber { get; set; }
public string userNickName { get; set; }
}