2025-08-12 11:50:29 +10:00
|
|
|
|
namespace PARR.DAL.DomainServices.Interfaces
|
2025-08-01 09:02:01 +10:00
|
|
|
|
{
|
|
|
|
|
|
public interface IShortcodesService
|
|
|
|
|
|
{
|
|
|
|
|
|
Task<string> ApplyShortcodesAsync(string str, Guid unitId, Guid jobId);
|
2025-08-06 10:33:55 +10:00
|
|
|
|
|
|
|
|
|
|
bool isAnyShortcodes(string str);
|
2025-08-01 09:02:01 +10:00
|
|
|
|
}
|
|
|
|
|
|
}
|