XPrintServer/XPrintServer.Business/Dto/BackstatgeUserInfo.cs
2025-11-16 19:33:01 +08:00

19 lines
448 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Text.Json.Serialization;
using System.Threading.Tasks;
namespace XPrintServer.Business.Dto
{
public class BackstatgeUserInfo
{
[JsonPropertyName("user_name")]
public string UserName { get; set; } = string.Empty;
[JsonPropertyName("password")]
public string Password { get; set; } = string.Empty;
}
}