9 lines
207 B
C#
9 lines
207 B
C#
|
|
using Netina.Domain.Dtos.ResponseDtos;
|
|||
|
|
|
|||
|
|
namespace Netina.Infrastructure.RestServices;
|
|||
|
|
|
|||
|
|
public interface IFileRestApi
|
|||
|
|
{
|
|||
|
|
[Get("/version.json")]
|
|||
|
|
Task<AdminChangeLogResponseDto> GetAdminChangeLog();
|
|||
|
|
}
|