Cleanup startup

This commit is contained in:
lumijiez
2025-06-30 00:53:30 +03:00
parent f2d7acecae
commit 0f5ac08470
11 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
namespace Imprink.Application.Dtos;
public class ShippingStatusDto
{
public int Id { get; set; }
public string Name { get; set; } = null!;
public string? Description { get; set; }
}