FileUploadResult.cs 181 B

1234
  1. namespace SharedKernel.Storage
  2. {
  3. public sealed record FileUploadResult(string Url, string FileName, long Size, string Extension, short? Width = null, short? Height = null);
  4. }