using FlowAPI.Domain.Entities; using System; using System.Collections.Generic; using System.Threading.Tasks; namespace FlowAPI.Application.Interfaces { public interface ICustomTemplateRepository { Task GetByIdAsync(Guid id); Task> GetByUserIdAsync(Guid userId); Task CreateAsync(CustomTemplate template); } }