8 lines
143 B
C#
8 lines
143 B
C#
namespace Metadata.Features.Jobs;
|
|
|
|
public interface IMetadataJob : IInvocable
|
|
{
|
|
bool IsScheduelable { get; }
|
|
string JobName { get; }
|
|
}
|