|
|
|
|
@ -1,12 +1,19 @@
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using System.Text.Json.Serialization;
|
|
|
|
|
|
|
|
|
|
namespace MvvmAppCore.Models
|
|
|
|
|
{
|
|
|
|
|
internal class MotorProfile
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
public record MotorProfile {
|
|
|
|
|
|
|
|
|
|
[property: JsonPropertyName("Motor Name")]
|
|
|
|
|
public string MotorName { get; set; }
|
|
|
|
|
|
|
|
|
|
[property: JsonPropertyName("Motor No")]
|
|
|
|
|
public int MotorNo { get; set; }
|
|
|
|
|
|
|
|
|
|
[property: JsonPropertyName("Type")]
|
|
|
|
|
public int Type { get; set; }
|
|
|
|
|
|
|
|
|
|
[property: JsonPropertyName("UPR")]
|
|
|
|
|
public double Upr { get; set; }
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|