using JNPF.Common.Contracts; namespace Tnb.WarehouseMgr.Entities { public interface IInOutStockDetail where TStockCode : BaseEntity, new() { string? line_status { get; set; } List CodeDetails { get; set; } } }