using System.ComponentModel.DataAnnotations; namespace MTWorkHR.Application.Models { public class BlobObject { public Stream? Content{ get; set; } public string? ContentType{ get; set; } } }