LFlow/LFlow.VersionManagement/Service/IVersionManagementService.cs

8 lines
183 B
C#

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