Erstellen von order-status-, tenant-, tenant-berth-, uom- and waste-Entitäten ohne Eigenschaft.

This commit is contained in:
tekh 2025-07-07 14:29:59 +02:00
parent eeccbfb81a
commit c74f5a9035
5 changed files with 37 additions and 0 deletions

View File

@ -0,0 +1,8 @@
namespace Leanetec.EConnect.Domain.Entities;
/// <summary>
/// Represents service order states
/// </summary>
public class OrderStatus
{
}

View File

@ -0,0 +1,8 @@
namespace Leanetec.EConnect.Domain.Entities;
/// <summary>
/// Represents tenants that are currently available for the service provider.
/// </summary>
public class Tenant
{
}

View File

@ -0,0 +1,8 @@
namespace Leanetec.EConnect.Domain.Entities;
/// <summary>
/// Represents berths a specific tenant, with location details.
/// </summary>
public class TenantBerth
{
}

View File

@ -0,0 +1,8 @@
namespace Leanetec.EConnect.Domain.Entities;
/// <summary>
/// Represent units of measurement
/// </summary>
public class Uom
{
}

View File

@ -0,0 +1,5 @@
namespace Leanetec.EConnect.Domain.Entities;
public class Waste
{
}