Files
zszq-trs/YLErpDAL/Model/SealTask.cs
2024-05-09 14:06:26 +08:00

17 lines
327 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using YLErp.DBModels.Abstract;
namespace YLErp.Model
{
internal class SealTask
{
public ITradeContractDocument Document { get; set; }
public List<int> TradeIds { get; set; }
}
}