Lisoveliy aebe654c38
Some checks are pending
Deploy / update (push) Waiting to run
Build Project .NET / build (push) Waiting to run
chore: init commit from GitHub
2025-05-12 19:44:33 +03:00

10 lines
381 B
C#

namespace SWAD.API.Models.Config.ApiServices.Structure;
// ReSharper disable once ClassNeverInstantiated.Global because: Is structure for config
public class ApiPaths
{
// ReSharper disable NullableWarningSuppressionIsUsed
public string Search { get; set; } = null!;
public string GetTrack { get; set; } = null!;
public string GetArtist { get; set; } = null!;
}