Skip to content

Commit

Permalink
fixed mergeconflict
Browse files Browse the repository at this point in the history
  • Loading branch information
md committed Nov 20, 2024
2 parents 4049441 + a5b0333 commit 536717d
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions backend/Core/Agreements/Agreement.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,9 @@ public class Agreement
[DatabaseGenerated(DatabaseGeneratedOption.Identity)]
public int Id { get; set; }
public string? Name { get; set; } = string.Empty;
// Foreign key to Customer
public int? CustomerId { get; set; }
public Customer? Customer { get; set; }

// Foreign key to Engagement
public int? EngagementId { get; set; }
public Engagement? Engagement { get; set; }

Expand All @@ -25,12 +23,12 @@ public class Agreement
public DateTime? NextPriceAdjustmentDate { get; set; }

public string? PriceAdjustmentIndex { get; set; }

public string? Notes { get; set; } = string.Empty;
public string? Options { get; set; } = string.Empty;
public string? PriceAdjustmentProcess { get; set; } = string.Empty;
}


public class FileReference
{
public string FileName { get; set; } = string.Empty;
Expand Down

0 comments on commit 536717d

Please sign in to comment.