Files
annotations/Azaion.Common/Services/IAnnotationPathResolver.cs
T

12 lines
256 B
C#

using Azaion.Common.Database;
namespace Azaion.Common.Services;
public interface IAnnotationPathResolver
{
string GetImagePath(Annotation annotation);
string GetLabelPath(Annotation annotation);
string GetThumbPath(Annotation annotation);
}