Add initial empty DTO classes for Catalogs, Dashboards, etc.

Introduced six new internal DTO classes: CatalogReadDto, CatalogWriteDto, DashboardInfoDto, LayoutDto, MassdataReadDto, and MassdataWriteDto. Each class resides in its appropriate namespace and currently contains no properties or methods, serving as placeholders for future data transfer logic.
This commit is contained in:
OlgunR
2026-04-23 11:22:58 +02:00
parent dbb39354ab
commit a1fee6f5c0
6 changed files with 72 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DbFirst.Contracts.Massdata
{
internal class MassdataWriteDto
{
}
}