You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
abp/modules/background-jobs/app/Volo.Abp.BackgroundJobs.Dem.../Jobs/WriteToConsoleGreenJobArgs.cs

17 lines
351 B

using System;
namespace Volo.Abp.BackgroundJobs.DemoApp.Shared.Jobs
{
[BackgroundJobName("GreenJob")]
public class WriteToConsoleGreenJobArgs
{
public string Value { get; set; }
public DateTime Time { get; set; }
public WriteToConsoleGreenJobArgs()
{
Time = DateTime.Now;
}
}
}