15 lines
481 B
C#
15 lines
481 B
C#
using ConstructorApp.EntityLayer.Entities;
|
||
|
||
namespace ConstructorAppUI.Dtos.TestimonialDtos
|
||
{
|
||
public class CreateTestimonialDto
|
||
{
|
||
public string? Name { get; set; }
|
||
public string? Title { get; set; }
|
||
public string? Comment { get; set; }
|
||
public string? ImageUrl { get; set; }
|
||
public TestimonialStatus Status { get; set; } // Durum enum'u kullanılıyor
|
||
public IFormFile? ImageFile { get; set; } // Yüklenecek dosya
|
||
}
|
||
}
|