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/WriteToConsoleYellowJobArgs.cs

18 lines
355 B

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