From 5ab0de1840d56e899b1ba14539d599b35907feea Mon Sep 17 00:00:00 2001 From: Adriano Serighelli Date: Thu, 11 Sep 2025 16:05:31 -0300 Subject: [PATCH] Criando BackupContext --- BackupPipefy.Infrastructure/Data/BackupContext.cs | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 BackupPipefy.Infrastructure/Data/BackupContext.cs diff --git a/BackupPipefy.Infrastructure/Data/BackupContext.cs b/BackupPipefy.Infrastructure/Data/BackupContext.cs new file mode 100644 index 0000000..4a60f97 --- /dev/null +++ b/BackupPipefy.Infrastructure/Data/BackupContext.cs @@ -0,0 +1,12 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace BackupPipefy.Infrastructure.Data +{ + internal class BackupContext + { + } +}