10 lines
256 B
C#
10 lines
256 B
C#
namespace ProximaContracts.Domain.Contracts.DTOs.Response
|
|
{
|
|
public class CreateContractResponseDto
|
|
{
|
|
public bool IsCreated { get; set; }
|
|
public int NewContractId { get; set; }
|
|
public string Message { get; set; }
|
|
}
|
|
}
|