8 lines
89 B
C#
8 lines
89 B
C#
namespace YLErp.Jobs
|
|
{
|
|
public interface IJob
|
|
{
|
|
void Excute();
|
|
}
|
|
}
|