namespace ProximaContracts.Domain.Contracts.DTOs.Response { public class CreateContractResponseDto { public bool IsCreated { get; set; } public int NewContractId { get; set; } public string Message { get; set; } } }