LFlow/LFlow.VersionManagement/Service/IVersionManagementService.cs

8 lines
183 B
C#
Raw Normal View History

using LFlow.Base.Interfaces;
using LFlow.VersionManagement.Model;
namespace LFlow.VersionManagement.Service;
public interface IVersionManagementService : IService<VersionDto>
{
}