diff --git a/MP.FileData/Controllers/FileController.cs b/MP.FileData/Controllers/FileController.cs
index 8fdf3e9e..9ee9cc3a 100644
--- a/MP.FileData/Controllers/FileController.cs
+++ b/MP.FileData/Controllers/FileController.cs
@@ -7,7 +7,7 @@ using Microsoft.EntityFrameworkCore;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
-using MP.FileData.DatabaseModels;
+using MP.FileData.DbModels;
using Newtonsoft.Json;
using MP.FileData.DTO;
using System.Text.RegularExpressions;
diff --git a/MP.FileData/DatabaseModels/ArchMaccModel.cs b/MP.FileData/DbModels/ArchMaccModel.cs
similarity index 96%
rename from MP.FileData/DatabaseModels/ArchMaccModel.cs
rename to MP.FileData/DbModels/ArchMaccModel.cs
index e3cf19cf..96b15e60 100644
--- a/MP.FileData/DatabaseModels/ArchMaccModel.cs
+++ b/MP.FileData/DbModels/ArchMaccModel.cs
@@ -9,7 +9,7 @@ using System.Threading.Tasks;
//
// This is here so CodeMaid doesn't reorganize this document
//
-namespace MP.FileData.DatabaseModels
+namespace MP.FileData.DbModels
{
[Table("Macchine")]
public partial class ArchMaccModel
diff --git a/MP.FileData/DatabaseModels/FileModel.cs b/MP.FileData/DbModels/FileModel.cs
similarity index 98%
rename from MP.FileData/DatabaseModels/FileModel.cs
rename to MP.FileData/DbModels/FileModel.cs
index 31bdf618..5e923cf9 100644
--- a/MP.FileData/DatabaseModels/FileModel.cs
+++ b/MP.FileData/DbModels/FileModel.cs
@@ -10,7 +10,7 @@ using System.Threading.Tasks;
//
// This is here so CodeMaid doesn't reorganize this document
//
-namespace MP.FileData.DatabaseModels
+namespace MP.FileData.DbModels
{
///
/// Tabella archivio dei File Programma
diff --git a/MP.FileData/DatabaseModels/TagModel.cs b/MP.FileData/DbModels/TagModel.cs
similarity index 93%
rename from MP.FileData/DatabaseModels/TagModel.cs
rename to MP.FileData/DbModels/TagModel.cs
index 849cb577..22d1b385 100644
--- a/MP.FileData/DatabaseModels/TagModel.cs
+++ b/MP.FileData/DbModels/TagModel.cs
@@ -9,7 +9,7 @@ using System.Threading.Tasks;
//
// This is here so CodeMaid doesn't reorganize this document
//
-namespace MP.FileData.DatabaseModels
+namespace MP.FileData.DbModels
{
[Table("Tags")]
public partial class TagModel
diff --git a/MP.FileData/ModelBuilderExtensions.cs b/MP.FileData/ModelBuilderExtensions.cs
index ce1c9d91..bcad3fb5 100644
--- a/MP.FileData/ModelBuilderExtensions.cs
+++ b/MP.FileData/ModelBuilderExtensions.cs
@@ -1,5 +1,5 @@
using Microsoft.EntityFrameworkCore;
-using MP.FileData.DatabaseModels;
+using MP.FileData.DbModels;
using System;
using System.Collections.Generic;
using System.Linq;
diff --git a/MP.FileData/MoonPro_ProgContext.cs b/MP.FileData/MoonPro_ProgContext.cs
index b67d7ca5..498f36d8 100644
--- a/MP.FileData/MoonPro_ProgContext.cs
+++ b/MP.FileData/MoonPro_ProgContext.cs
@@ -6,7 +6,7 @@ using System.Text;
using System.Threading.Tasks;
using Microsoft.EntityFrameworkCore.Metadata;
using Microsoft.Extensions.Configuration;
-using MP.FileData.DatabaseModels;
+using MP.FileData.DbModels;
using NLog;
namespace MP.FileData
diff --git a/MP.Prog/Components/ArchiveEdit.razor.cs b/MP.Prog/Components/ArchiveEdit.razor.cs
index 7de88b5b..7e6b9841 100644
--- a/MP.Prog/Components/ArchiveEdit.razor.cs
+++ b/MP.Prog/Components/ArchiveEdit.razor.cs
@@ -1,5 +1,5 @@
using Microsoft.AspNetCore.Components;
-using MP.FileData.DatabaseModels;
+using MP.FileData.DbModels;
using MP.Prog.Data;
using System.Threading.Tasks;
diff --git a/MP.Prog/Components/ArchiveStatus.razor.cs b/MP.Prog/Components/ArchiveStatus.razor.cs
index 8436c327..c9deb837 100644
--- a/MP.Prog/Components/ArchiveStatus.razor.cs
+++ b/MP.Prog/Components/ArchiveStatus.razor.cs
@@ -1,6 +1,6 @@
using Microsoft.AspNetCore.Components;
using Microsoft.Extensions.Configuration;
-using MP.FileData.DatabaseModels;
+using MP.FileData.DbModels;
using MP.FileData.DTO;
using MP.Prog.Data;
using NLog;
diff --git a/MP.Prog/Components/FileEditor.razor.cs b/MP.Prog/Components/FileEditor.razor.cs
index 0d00faf1..035faa18 100644
--- a/MP.Prog/Components/FileEditor.razor.cs
+++ b/MP.Prog/Components/FileEditor.razor.cs
@@ -1,6 +1,6 @@
using Microsoft.AspNetCore.Components;
using Microsoft.JSInterop;
-using MP.FileData.DatabaseModels;
+using MP.FileData.DbModels;
using MP.Prog.Data;
using NLog;
using System;
diff --git a/MP.Prog/Components/RevList.razor.cs b/MP.Prog/Components/RevList.razor.cs
index c5b44208..e905edb3 100644
--- a/MP.Prog/Components/RevList.razor.cs
+++ b/MP.Prog/Components/RevList.razor.cs
@@ -1,7 +1,7 @@
using Microsoft.AspNetCore.Components;
using Microsoft.JSInterop;
using MP.FileData;
-using MP.FileData.DatabaseModels;
+using MP.FileData.DbModels;
using MP.Prog.Data;
using System.Collections.Generic;
using System.Threading.Tasks;
diff --git a/MP.Prog/Components/TagSearch.razor.cs b/MP.Prog/Components/TagSearch.razor.cs
index 6bdb95ca..c416a4cd 100644
--- a/MP.Prog/Components/TagSearch.razor.cs
+++ b/MP.Prog/Components/TagSearch.razor.cs
@@ -4,7 +4,7 @@ using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Components;
using Microsoft.Extensions.Configuration;
-using MP.FileData.DatabaseModels;
+using MP.FileData.DbModels;
using MP.Prog;
using MP.Prog.Data;
diff --git a/MP.Prog/Data/FileArchDataService.cs b/MP.Prog/Data/FileArchDataService.cs
index 38202ca0..c4dd19ad 100644
--- a/MP.Prog/Data/FileArchDataService.cs
+++ b/MP.Prog/Data/FileArchDataService.cs
@@ -15,7 +15,7 @@ using System.Diagnostics;
using MP.FileData.Controllers;
using MP.FileData.DTO;
using StackExchange.Redis;
-using MP.FileData.DatabaseModels;
+using MP.FileData.DbModels;
namespace MP.Prog.Data
{
diff --git a/MP.Prog/MP.Prog.csproj b/MP.Prog/MP.Prog.csproj
index 03258e52..a17603e0 100644
--- a/MP.Prog/MP.Prog.csproj
+++ b/MP.Prog/MP.Prog.csproj
@@ -3,7 +3,7 @@
net6.0
MP.Prog
- 6.16.2502.1011
+ 6.16.2503.0810
True
diff --git a/MP.Prog/Pages/Archive.razor.cs b/MP.Prog/Pages/Archive.razor.cs
index 649d3801..fc3cbf03 100644
--- a/MP.Prog/Pages/Archive.razor.cs
+++ b/MP.Prog/Pages/Archive.razor.cs
@@ -1,7 +1,7 @@
using Microsoft.AspNetCore.Components;
using Microsoft.JSInterop;
using MP.FileData;
-using MP.FileData.DatabaseModels;
+using MP.FileData.DbModels;
using MP.Prog.Data;
using NLog;
using System;
diff --git a/MP.Prog/Resources/ChangeLog.html b/MP.Prog/Resources/ChangeLog.html
index d03763ff..8c99038e 100644
--- a/MP.Prog/Resources/ChangeLog.html
+++ b/MP.Prog/Resources/ChangeLog.html
@@ -1,6 +1,6 @@
Modulo gestione Programmi MAPO
- Versione: 6.16.2502.1011
+ Versione: 6.16.2503.0810
Note di rilascio:
diff --git a/MP.Prog/Resources/VersNum.txt b/MP.Prog/Resources/VersNum.txt
index 7dc780a1..ecfa34c1 100644
--- a/MP.Prog/Resources/VersNum.txt
+++ b/MP.Prog/Resources/VersNum.txt
@@ -1 +1 @@
-6.16.2502.1011
+6.16.2503.0810
diff --git a/MP.Prog/Resources/manifest.xml b/MP.Prog/Resources/manifest.xml
index 6ef52736..0cced502 100644
--- a/MP.Prog/Resources/manifest.xml
+++ b/MP.Prog/Resources/manifest.xml
@@ -1,6 +1,6 @@
-
- 6.16.2502.1011
+ 6.16.2503.0810
https://nexus.steamware.net/repository/SWS/MP-PROG/stable/LAST/MP.Prog.zip
https://nexus.steamware.net/repository/SWS/MP-PROG/stable/LAST/ChangeLog.html
false