2026-04-14 12:01:49 +10:00
|
|
|
|
using PARR.Domain.Enums;
|
2025-12-10 11:55:58 +10:00
|
|
|
|
|
2026-05-04 11:55:07 +10:00
|
|
|
|
namespace PARR.Domain.DTOs.Shortcode
|
2025-12-10 11:55:58 +10:00
|
|
|
|
{
|
|
|
|
|
|
public class ShortcodeInfoDto
|
|
|
|
|
|
{
|
|
|
|
|
|
public required string Shortcode { get; set; }
|
|
|
|
|
|
public required string Description { get; set; }
|
|
|
|
|
|
public ShortcodeTypeEnum Type { get; set; }
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|