You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
481 B
C#
20 lines
481 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace MvvmAppCore.Models
|
|
{
|
|
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; }
|
|
};
|
|
}
|