18 lines
490 B
C#
18 lines
490 B
C#
using PARR.DAL.DomainModels;
|
|
using PARR.DAL.DomainServices.Shortcodes.Models;
|
|
using PARR.DAL.Models;
|
|
|
|
namespace PARR.DAL.DomainServices.Shortcodes
|
|
{
|
|
public interface IShortcodesService
|
|
{
|
|
Task<string> ApplyShortcodesAsync(string str, TemplateForShortcodes template);
|
|
|
|
Task<string> ApplyShortcodesAsync(string str, Template template);
|
|
|
|
// bool IsAnyShortcodes(string str);
|
|
|
|
Task<List<ShortcodeInfoDto>> GetAvailableShortcodesAsync();
|
|
}
|
|
}
|