You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Connected.Logistics/Connected.Logistics.Documen.../Receive/IReceivePostingDocument.cs

11 lines
243 B

using Connected.Common.Documents;
2 years ago
namespace Connected.Logistics.Documents.Receive;
2 years ago
public interface IReceivePostingDocument : IDocument<int>
{
int Document { get; init; }
int OpenItemCount { get; init; }
int ItemCount { get; init; }
}