UNPKG

@tatumio/algo-connector

Version:

ALGO Connector for Tatum API

12 lines (9 loc) 194 B
import { IsNotEmpty, Length } from 'class-validator'; export class PathFromTo { @IsNotEmpty() @Length(5, 50) public from: string; @IsNotEmpty() @Length(5, 50) public to: string; }