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