Generator Changes at 11/16/2025 1:18:11 AM +03:30

This commit is contained in:
masoodafar-web
2025-11-16 01:19:27 +03:30
parent 84aa7c20e6
commit ae749341d1
6 changed files with 25 additions and 10 deletions

View File

@@ -8,6 +8,6 @@ public record CreateNewContractCommand : IRequest<CreateNewContractResponseDto>
//متن قرارداد
public string HtmlContent { get; init; }
//نوع قرارداد
public UnknownEnumType Type { get; init; }
public ContractType Type { get; init; }
}

View File

@@ -10,6 +10,6 @@ public record UpdateContractCommand : IRequest<Unit>
//متن قرارداد
public string HtmlContent { get; init; }
//نوع قرارداد
public UnknownEnumType Type { get; init; }
public ContractType Type { get; init; }
}

View File

@@ -19,5 +19,5 @@ public record GetAllContractByFilterQuery : IRequest<GetAllContractByFilterRespo
//متن قرارداد
public string? HtmlContent { get; set; }
//نوع قرارداد
public UnknownEnumType Type { get; set; }
public ContractType? Type { get; set; }
}

View File

@@ -17,5 +17,5 @@ public class GetAllContractByFilterResponseDto
//متن قرارداد
public string HtmlContent { get; set; }
//نوع قرارداد
public UnknownEnumType Type { get; set; }
public ContractType Type { get; set; }
}

View File

@@ -10,6 +10,6 @@ public class GetContractResponseDto
//متن قرارداد
public string HtmlContent { get; set; }
//نوع قرارداد
public UnknownEnumType Type { get; set; }
public ContractType Type { get; set; }
}