feat(Button): create repositry

This commit is contained in:
Developer 02
2025-07-29 19:55:20 +02:00
parent 8655f78c8c
commit 87857862e4
5 changed files with 27 additions and 3 deletions

View File

@@ -0,0 +1,8 @@
using DigitalData.Core.Abstractions.Infrastructure;
using WorkFlow.Domain.Entities;
namespace WorkFlow.Application.Contracts.Repositories;
public interface IButtonRepository : ICRUDRepository<Button, int>
{
}