Skip to content

Commit

Permalink
fix: add get; init; to not refactored records
Browse files Browse the repository at this point in the history
  • Loading branch information
dluciano committed Jun 30, 2024
1 parent 1457823 commit 0953b55
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<ArtifactsPath>$(MSBuildThisFileDirectory)artifacts</ArtifactsPath>
</PropertyGroup>
<PropertyGroup>
<Version>2.0.0</Version>
<Version>2.0.1</Version>
<Authors>SSD Smart Software Development SRL</Authors>
<Company>SSD Smart Software Development SRL</Company>
<Copyright>© SSD Smart Software Development SRL</Copyright>
Expand Down
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; }
};
7 changes: 6 additions & 1 deletion ECF_DGII.Models/Autenticacion/RespuestaSemilla.cs
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; }
}

0 comments on commit 0953b55

Please sign in to comment.