move data stores into their own folders like the go project

This commit is contained in:
2026-08-06 16:24:04 -05:00
parent e17fbc14a0
commit 984e8da231
5 changed files with 5 additions and 4 deletions
@@ -1,6 +1,6 @@
using System.Collections.Concurrent;
namespace SafelyYou;
namespace SafelyYou.Data;
public readonly record struct DeviceId(string Value);
@@ -1,7 +1,7 @@
using System.Collections.Concurrent;
using System.Numerics;
namespace SafelyYou;
namespace SafelyYou.Data;
public sealed class UploadTimes
{
+1
View File
@@ -1,5 +1,6 @@
using SafelyYou;
using SafelyYou.Api;
using SafelyYou.Data;
using Serilog;
var builder = WebApplication.CreateBuilder(args);
@@ -1,4 +1,4 @@
using SafelyYou;
using SafelyYou.Data;
namespace SafelyYouTests;
@@ -1,4 +1,4 @@
using SafelyYou;
using SafelyYou.Data;
namespace SafelyYouTests;