mirror of
https://github.com/azaion/annotations.git
synced 2026-04-22 10:06:30 +00:00
12 lines
256 B
C#
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);
|
|
}
|
|
|