22 lines
562 B
C#
22 lines
562 B
C#
|
using System.Text.Json.Serialization;
|
||
|
|
||
|
namespace FortranWebApi.Models
|
||
|
{
|
||
|
public class FortranParameter
|
||
|
{
|
||
|
[JsonPropertyName("name")]
|
||
|
public string Name { get; set; } = string.Empty;
|
||
|
|
||
|
[JsonPropertyName("dataType")]
|
||
|
public string DataType { get; set; } = "0";
|
||
|
|
||
|
[JsonPropertyName("arrayType")]
|
||
|
public string ArrayType { get; set; } = "0";
|
||
|
|
||
|
[JsonPropertyName("isOut")]
|
||
|
public string IsOut { get; set; } = "2";
|
||
|
|
||
|
[JsonPropertyName("data")]
|
||
|
public object? Data { get; set; }
|
||
|
}
|
||
|
}
|