30 lines
585 B
C#
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; }
|
|
|
|
// }
|