Generator Changes at 11/16/2025 1:18:11 AM +03:30
This commit is contained in:
@@ -8,6 +8,6 @@ public record CreateNewContractCommand : IRequest<CreateNewContractResponseDto>
|
||||
//متن قرارداد
|
||||
public string HtmlContent { get; init; }
|
||||
//نوع قرارداد
|
||||
public UnknownEnumType Type { get; init; }
|
||||
public ContractType Type { get; init; }
|
||||
|
||||
}
|
||||
@@ -10,6 +10,6 @@ public record UpdateContractCommand : IRequest<Unit>
|
||||
//متن قرارداد
|
||||
public string HtmlContent { get; init; }
|
||||
//نوع قرارداد
|
||||
public UnknownEnumType Type { get; init; }
|
||||
public ContractType Type { get; init; }
|
||||
|
||||
}
|
||||
@@ -19,5 +19,5 @@ public record GetAllContractByFilterQuery : IRequest<GetAllContractByFilterRespo
|
||||
//متن قرارداد
|
||||
public string? HtmlContent { get; set; }
|
||||
//نوع قرارداد
|
||||
public UnknownEnumType Type { get; set; }
|
||||
public ContractType? Type { get; set; }
|
||||
}
|
||||
|
||||
@@ -17,5 +17,5 @@ public class GetAllContractByFilterResponseDto
|
||||
//متن قرارداد
|
||||
public string HtmlContent { get; set; }
|
||||
//نوع قرارداد
|
||||
public UnknownEnumType Type { get; set; }
|
||||
public ContractType Type { get; set; }
|
||||
}
|
||||
|
||||
@@ -10,6 +10,6 @@ public class GetContractResponseDto
|
||||
//متن قرارداد
|
||||
public string HtmlContent { get; set; }
|
||||
//نوع قرارداد
|
||||
public UnknownEnumType Type { get; set; }
|
||||
public ContractType Type { get; set; }
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user