using System.ComponentModel.DataAnnotations; namespace SPMS.Application.DTOs.Message; public class MessagePreviewRequestDto { [Required] public string MessageCode { get; set; } = string.Empty; public Dictionary? Variables { get; set; } }