Skip to content

Commit a6d6156

Browse files
committed
Update Cardinality.cs
1 parent 1305c5a commit a6d6156

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
@@ -15,8 +15,8 @@ public class Cardinality
1515
public string? Id { get; set; }
1616

1717
/// <summary>
18-
/// Optional information to name a certain cardinality construct. For example
19-
/// One-to-One (1:1): {"from": {"min": 1, "max": 1}, "to": {"min": 1, "max": 1}}
18+
/// Optional information to name a certain cardinality construct. For example one-to-one, one-to-many, or many-to-many.
19+
/// E.g. one-to-one could be defined as {"from": {"min": 1, "max": 1}, "to": {"min": 1, "max": 1}}.
2020
/// </summary>
2121
[JsonPropertyName("name")]
2222
public string? Name { get; set; }

0 commit comments

Comments
 (0)