using System;
using System.Collections.Generic;
using System.Text;
namespace ProcessJobLog {
///
/// Class that contains properties for an OS/400 job log.
///
class JobLog {
private String jobName = String.Empty;
private String jobUser = String.Empty;
private String jobNumber = String.Empty;
private String jobDescription = String.Empty;
private String jobDescriptionLibrary = String.Empty;
///
/// The job name for the job log.
///
public String JobName {
get { return jobName; }
set { jobName = value; }
}
///
/// The job user for the job log.
///
public String JobUser {
get { return jobUser; }
set { jobUser = value; }
}
///
/// The job number for the job log.
///
public String JobNumber {
get { return jobNumber; }
set { jobNumber = value; }
}
///
/// The job description for the job log.
///
public String JobDescription {
get { return jobDescription; }
set { jobDescription = value; }
}
///
/// The job description library for the job log.
///
public String JobDescriptionLibrary {
get { return jobDescriptionLibrary; }
set { jobDescriptionLibrary = value; }
}
}
}