using ConstructorApp.EntityLayer.Entities; namespace ConstructorApp.DtoLayer.TestimonialDto { public class UpdateTestimonialDto { public int TestimonialID { get; set; } 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 } }