เพิ่มnoti by keycloak

This commit is contained in:
Kittapath 2023-12-24 15:05:44 +07:00
parent ef415217c8
commit 356c6eb9c0
2 changed files with 56 additions and 0 deletions

View file

@ -0,0 +1,15 @@
using BMA.EHR.Domain.Models.MetaData;
using Microsoft.EntityFrameworkCore;
namespace BMA.EHR.Placement.Service.Requests
{
public class NotiReplyRequest
{
public string Subject { get; set; } = "";
public string Body { get; set; } = "";
public string Payload { get; set; } = "";
public bool IsSendMail { get; set; } = true;
public bool IsSendInbox { get; set; } = true;
public bool IsSendNotification { get; set; } = true;
}
}