10 lines
265 B
C#
10 lines
265 B
C#
namespace NPP.SmartSchedue.Api.Contracts.Services.Notification.Input;
|
|
|
|
public class NotificationSettingPageInput
|
|
{
|
|
public string? NotificationName { get; set; }
|
|
|
|
public bool? IsEnabled { get; set; }
|
|
|
|
public long? PersonnelGroupId { get; set; }
|
|
} |