Files
parr_api/PARR.DAL/DomainServices/Shortcodes/IShortcodesService.cs

14 lines
381 B
C#
Raw Normal View History

using PARR.DAL.DomainModels;
using PARR.DAL.Models;
using System.Runtime.CompilerServices;
namespace PARR.DAL.DomainServices.Shortcodes
2025-08-01 09:02:01 +10:00
{
public interface IShortcodesService
{
Task<string> ApplyShortcodesAsync(string str, Template template, [CallerMemberName] string? caller = null);
Task<List<ShortcodeInfoDto>> GetAvailableShortcodesAsync();
2025-08-01 09:02:01 +10:00
}
}