Files
Auth/Auth.Domain/Entities/UploadedFile.cs
T
2026-08-05 21:15:14 +03:00

30 lines
585 B
C#

// using System;
// using System.Collections.Generic;
// using System.ComponentModel.DataAnnotations.Schema;
// using System.Linq;
// using System.Threading.Tasks;
// namespace Auth.Domain.Entities;
// public class UploadedFile
// {
// public Guid Id { get; set; }
// public string Type { get; set; }
// public string Extension { get; set; }
// public string Name { get; set; }
// [NotMapped]
// public string? Content64 { get; set; }
// [NotMapped]
// public byte[]? Content { get; set; }
// public string? UploadLink { get; set; }
// }