Files
2026-06-01 13:23:34 +09:00

16 lines
323 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace KssSmaPlaLib.Batch.Interface
{
public interface IFuncResultDto
{
bool Succeeded { get; set; }
int ExitCode { get; set; }
string ResultMessage { get; set; }
}
}