2024-01-30 02:33:27 +03:30
|
|
|
|
using NetinaShop.Common.Extensions;
|
|
|
|
|
|
|
|
|
|
|
|
namespace NetinaShop.AdminPanel.PWA.Extensions;
|
|
|
|
|
|
|
|
|
|
|
|
public static class StorageFileExtension
|
|
|
|
|
|
{
|
|
|
|
|
|
public static string GetLink(this StorageFileSDto file)
|
|
|
|
|
|
{
|
2024-04-03 10:40:42 +03:30
|
|
|
|
var link = $"https://storage.vesmeh.com/{file.FileLocation}";
|
2024-01-30 02:33:27 +03:30
|
|
|
|
return link;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|