17 lines
518 B
C#
17 lines
518 B
C#
/////////////////////////////////////////////////////////////////////////////////
|
|
// 宁波拓通e智造平台 ToTong Next Builder //
|
|
// https://git.tuotong-tech.com/tnb/tnb.server //
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
|
|
using JNPF.DependencyInjection;
|
|
|
|
namespace Tnb.VmodelEngine;
|
|
|
|
/// <summary>
|
|
/// 视图模型服务接口
|
|
/// </summary>
|
|
public interface IVmodelPageAppService : ITransient
|
|
{
|
|
|
|
}
|