using System.Dynamic; namespace Tiobon.Core.Model; public class ServiceFormResult { public int code { get; set; } = 0; public string message { get; set; } public dynamic result { get; set; } = new ExpandoObject(); public string type { get; set; } = "success"; }