Files
2025-05-01 15:18:30 +03:00

15 lines
454 B
C#
Raw Permalink 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.
using ConstructorApp.EntityLayer.Entities;
namespace ConstructorAppUI.Dtos.TestimonialDtos
{
public class GetTestimonialDto
{
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
}
}