10 lines
301 B
C#
10 lines
301 B
C#
|
|
namespace Domain.Dtos.Stock
|
|||
|
|
{
|
|||
|
|
public sealed class StockItemExpeditionConflictDto
|
|||
|
|
{
|
|||
|
|
public int StockitemId { get; set; }
|
|||
|
|
public int ExpeditionId { get; set; }
|
|||
|
|
public string Expeditionnumber { get; set; } = string.Empty;
|
|||
|
|
public int Status { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|