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

15 lines
382 B
C#
Raw Normal View History

using PARR.DAL.DomainModels;
using PARR.DAL.DomainServices.Shortcodes.Models;
namespace PARR.DAL.DomainServices.Shortcodes
2025-08-01 09:02:01 +10:00
{
public interface IShortcodesService
{
Task<string> ApplyShortcodesAsync(string str, TemplateForShortcodes template);
bool IsAnyShortcodes(string str);
Task<List<ShortcodeInfoDto>> GetAvailableShortcodesAsync();
2025-08-01 09:02:01 +10:00
}
}