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.
22 lines
721 B
22 lines
721 B
using LINGYUN.Abp.Notifications;
|
|
|
|
namespace LY.MicroService.Applications.Single.BackgroundJobs;
|
|
|
|
public class NotificationPublishJobArgs
|
|
{
|
|
public Guid? TenantId { get; set; }
|
|
public long NotificationId { get; set; }
|
|
public string ProviderType { get; set; }
|
|
public List<UserIdentifier> UserIdentifiers { get; set; }
|
|
public NotificationPublishJobArgs()
|
|
{
|
|
UserIdentifiers = new List<UserIdentifier>();
|
|
}
|
|
public NotificationPublishJobArgs(long id, string providerType, List<UserIdentifier> userIdentifiers, Guid? tenantId = null)
|
|
{
|
|
NotificationId = id;
|
|
ProviderType = providerType;
|
|
UserIdentifiers = userIdentifiers;
|
|
TenantId = tenantId;
|
|
}
|
|
}
|
|
|