namespace OF_DL.Services; public interface IFileNameService { /// /// Applies token values to a filename format and removes invalid characters. /// Task BuildFilename(string fileFormat, Dictionary values); /// /// Builds a map of filename token values from post, media, and author data. /// Task> GetFilename(object info, object media, object author, List selectedProperties, string username, Dictionary? users = null); }