15 lines
198 B
C#
15 lines
198 B
C#
using SWAD.API.Consts.Enums;
|
|
|
|
namespace TelegramBot.DTOs;
|
|
|
|
public record GetLink(
|
|
MusicService service
|
|
);
|
|
|
|
public record LinkDto(
|
|
string? link
|
|
);
|
|
|
|
public record ErrorDto(
|
|
string title
|
|
); |