sozsoft-platform/api/src/Sozsoft.Platform.Domain/Entities/Host/BackgroundWorker.cs
2026-02-25 11:35:13 +03:00

18 lines
520 B
C#

using System;
using Sozsoft.Platform.Enums;
using Volo.Abp.Domain.Entities.Auditing;
namespace Sozsoft.Platform.Entities;
public class BackgroundWorker : FullAuditedEntity<Guid>
{
public string Name { get; set; }
public string Cron { get; set; }
public WorkerTypeEnum WorkerType { get; set; }
public bool IsActive { get; set; }
public string DataSourceCode { get; set; }
public string BeforeSp { get; set; }
public string AfterSp { get; set; }
public string Options { get; set; }
}