8 lines
183 B
C#
8 lines
183 B
C#
|
|
using LFlow.Base.Interfaces;
|
|||
|
|
using LFlow.VersionManagement.Model;
|
|||
|
|
|
|||
|
|
namespace LFlow.VersionManagement.Service;
|
|||
|
|
public interface IVersionManagementService : IService<VersionDto>
|
|||
|
|
{
|
|||
|
|
}
|