-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: add
get; init;
to not refactored records
- Loading branch information
Showing
3 changed files
with
13 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
11 changes: 6 additions & 5 deletions
11
ECF_DGII.Models/AprobacionComercial/RespuestaAprobacionComercial.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,8 @@ | ||
namespace ECF_DGII.Models.RespuestaAprobacionComercial; | ||
|
||
public record RespuestaAprobacionComercial( | ||
string? Codigo, | ||
string? Estado, | ||
string[]? Mensaje | ||
); | ||
public record RespuestaAprobacionComercial | ||
{ | ||
public string? Codigo { get; init; } | ||
public string? Estado { get; init; } | ||
public string[]? Mensaje { get; init; } | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,8 @@ | ||
namespace ECF_DGII.Models.Autenticacion; | ||
|
||
public record RespuestaSemilla(string? Token, DateTime Expira, DateTime Expedido); | ||
public record RespuestaSemilla | ||
{ | ||
public string? Token { get; set; } | ||
public DateTime Expira { get; set; } | ||
public DateTime Expedido { get; set; } | ||
} |