10 lines
252 B
C#
10 lines
252 B
C#
namespace ProximaContracts.Domain.Contracts.DTOs.Response
|
|
{
|
|
public class UpdateContractResponseDto
|
|
{
|
|
public bool IsUpdated { get; set; }
|
|
public int ContractId { get; set; }
|
|
public string Message { get; set; }
|
|
}
|
|
}
|