2024-04-17 16:19:43 +03:30
|
|
|
|
namespace Netina.AdminPanel.PWA.Extensions;
|
2024-01-30 02:33:27 +03:30
|
|
|
|
|
|
|
|
|
|
public static class StorageFileExtension
|
|
|
|
|
|
{
|
|
|
|
|
|
public static string GetLink(this StorageFileSDto file)
|
|
|
|
|
|
{
|
2024-05-16 13:52:55 +03:30
|
|
|
|
var link = $"{Address.StorageAddress}{file.FileLocation}";
|
2024-01-30 02:33:27 +03:30
|
|
|
|
return link;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|