using System; namespace Inohara.DT; [Serializable] public struct BatchResponse { public bool success; public BatchResponseBody body; } [Serializable] public struct BatchResponseBody { public string url; } [Serializable] public struct BatchResponse2 { public bool success; }