erp-platform/api/src/Erp.Platform.Application.Contracts/Activity/ActivityFileDto.cs
2025-11-12 15:59:31 +03:00

11 lines
411 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

namespace Erp.Platform.Activities;
public class ActivityFileDto
{
public string FileName { get; set; } // Dosya adı
public string FileType { get; set; } // MIME tipi
public long FileSize { get; set; } // Boyut (byte)
public string SavedFileName { get; set; } // Blob üzerinde kaydedilen dosya adı
public string FileBase64 { get; set; } // Dosya içeriği
}