DeviceManager/DeviceRepair.Models/Common/SFCTokenModel.cs

10 lines
223 B
C#
Raw Normal View History

2024-05-28 14:36:38 +00:00
namespace DeviceRepair.Models.Common
{
public class SFCTokenModel
{
public string LoginCode { get; set; }
public string Password { get; set; }
public string inParams { get; set; }
}
}