13 lines
379 B
C#
13 lines
379 B
C#
|
using System.Text.Json.Serialization;
|
||
|
|
||
|
namespace FortranWebApi.Models
|
||
|
{
|
||
|
public class FortranRequest
|
||
|
{
|
||
|
public string FuncName { get; set; } = string.Empty;
|
||
|
public string ClassName { get; set; } = string.Empty;
|
||
|
|
||
|
[JsonPropertyName("par")]
|
||
|
public List<FortranParameter> Parameters { get; set; } = new List<FortranParameter>();
|
||
|
}
|
||
|
}
|