8 lines
194 B
C#
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; }
|
|
} |