19 lines
448 B
C#
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;
|
|
}
|
|
}
|