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

14 lines
326 B
C#

using PARR.DAL.DomainModels;
namespace PARR.DAL.DomainServices.Interfaces
{
public interface IShortcodesService
{
Task<string> ApplyShortcodesAsync(string str, Guid unitId, Guid jobId);
bool IsAnyShortcodes(string str);
Task<List<ShortcodeInfoDto>> GetAvailableShortcodesAsync();
}
}