SUB_WAVELET/FortranWebApi/Models/FortranRequest.cs

13 lines
379 B
C#
Raw Normal View History

2025-04-17 17:50:06 +08:00
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>();
}
}