Skip to content

Commit c21296b

Browse files
committed
Update Cardinality.cs
1 parent a6d6156 commit c21296b

File tree

1 file changed

+2
-2
lines changed
  • DataWarehouseAutomation/DataWarehouseAutomation/DwaModel

1 file changed

+2
-2
lines changed

DataWarehouseAutomation/DataWarehouseAutomation/DwaModel/Cardinality.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,12 @@ public class Cardinality
2424
/// <summary>
2525
/// The 'from' component in the cardinality, e.g. the '1' in 1 to many.
2626
/// </summary>
27-
public CardinalityRange FromRange { get; set; } = new CardinalityRange { Min = 1, Max = "1" };
27+
public CardinalityRange FromRange { get; set; } = new CardinalityRange { Min = "1", Max = "1" };
2828

2929
/// <summary>
3030
/// The 'to' component in the cardinality, e.g. the 'many' in 1 to many.
3131
/// </summary>
32-
public CardinalityRange ToRange { get; set; } = new CardinalityRange { Min = 1, Max = "N" };
32+
public CardinalityRange ToRange { get; set; } = new CardinalityRange { Min = "1", Max = "N" };
3333

3434
/// <summary>
3535
/// Free-form and optional classification for the Data Item for use in generation logic (evaluation).

0 commit comments

Comments
 (0)