Skip to content

Commit

Permalink
chore: move into namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
trulshj committed Jan 6, 2025
1 parent 1bd1278 commit f71bd01
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion backend/Api/Agreements/AgreementModels.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
using System.ComponentModel.DataAnnotations;
using Core.Agreements;
// ReSharper disable NotAccessedPositionalProperty.Global

namespace Api.Agreements;

public record AgreementReadModel(
int AgreementId,
Expand Down Expand Up @@ -55,9 +58,10 @@ public IEnumerable<ValidationResult> Validate(ValidationContext validationContex
}


// ReSharper disable once ClassNeverInstantiated.Global
public record FileReferenceWriteModel(
string FileName,
string BlobName,
DateTime UploadedOn,
string? UploadedBy
);
);

0 comments on commit f71bd01

Please sign in to comment.