20 lines
366 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace AccountingWarehouseProductsDataModels.Models
{
public interface IShipmentModel : IId
{
2024-05-07 16:15:07 +04:00
DateTime? ShipmentDate { get; }
int Count { get; }
string Recipient { get; }
int OrderId { get; }
}
}