BatchJobResult.cs 237 B

12345678910111213141516
  1. namespace XYY.Service.Standard.First
  2. {
  3. public class BatchJobResult
  4. {
  5. public string JobId
  6. {
  7. get; set;
  8. }
  9. public string ErrorFileUrl
  10. {
  11. get; set;
  12. }
  13. }
  14. }