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

10 lines
227 B
C#

namespace PARR.DAL.DomainServices.Interfaces
{
public interface IShortcodesService
{
Task<string> ApplyShortcodesAsync(string str, Guid unitId, Guid jobId);
bool isAnyShortcodes(string str);
}
}