16 lines
390 B
C#
16 lines
390 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using JNPF.Common.Contracts;
|
|
|
|
namespace Tnb.WarehouseMgr.Entities
|
|
{
|
|
public interface IInOutStockDetail<TStockCode> where TStockCode : BaseEntity<string>, new()
|
|
{
|
|
string? line_status { get; set; }
|
|
List<TStockCode> CodeDetails { get; set; }
|
|
}
|
|
}
|