2025-12-10 11:55:58 +10:00
|
|
|
|
using PARR.DAL.DomainModels;
|
2026-01-13 14:36:07 +10:00
|
|
|
|
using PARR.DAL.Models;
|
2026-01-16 18:26:06 +10:00
|
|
|
|
using System.Runtime.CompilerServices;
|
2025-12-10 11:55:58 +10:00
|
|
|
|
|
2025-12-23 18:27:31 +10:00
|
|
|
|
namespace PARR.DAL.DomainServices.Shortcodes
|
2025-08-01 09:02:01 +10:00
|
|
|
|
{
|
|
|
|
|
|
public interface IShortcodesService
|
|
|
|
|
|
{
|
2026-01-16 18:26:06 +10:00
|
|
|
|
Task<string> ApplyShortcodesAsync(string str, Template template, [CallerMemberName] string? caller = null);
|
2025-12-10 11:55:58 +10:00
|
|
|
|
|
|
|
|
|
|
Task<List<ShortcodeInfoDto>> GetAvailableShortcodesAsync();
|
2025-08-01 09:02:01 +10:00
|
|
|
|
}
|
|
|
|
|
|
}
|