Files
imprink/src/Imprink.Application/Dtos/Orders/ShippingStatusDto.cs
2025-06-30 00:53:30 +03:00

8 lines
194 B
C#

namespace Imprink.Application.Dtos;
public class ShippingStatusDto
{
public int Id { get; set; }
public string Name { get; set; } = null!;
public string? Description { get; set; }
}