erp-platform/api/modules/Erp.Sender/Rocket/RocketChatPostMessageInput.cs
2025-11-11 22:49:52 +03:00

8 lines
157 B
C#

namespace Erp.Sender.Rocket;
public class RocketChatPostMessageInput
{
public string? Channel { get; set; }
public string? Text { get; set; }
}