BlobObject.cs 224 B

123456789101112
  1. using System.ComponentModel.DataAnnotations;
  2. namespace MTWorkHR.Application.Models
  3. {
  4. public class BlobObject
  5. {
  6. public Stream? Content{ get; set; }
  7. public string? ContentType{ get; set; }
  8. }
  9. }