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

11 lines
272 B
C#

namespace ConstructorAppUI.Dtos.ServiceDtos
{
public class UpdateServiceDto
{
public int ServiceID { get; set; }
public string? Title { get; set; }
public string? SubTitle { get; set; }
public bool IsActive { get; set; }
}
}