using System.IO;
namespace Wino.Core.Domain.Models.Common;
///
/// Abstraction for StorageFile
///
/// Full path of the file.
/// Content
public record SharedFile(string FullFilePath, byte[] Data)
{
public string FileName => Path.GetFileName(FullFilePath);
}