-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #370 from nofrixion/MOOV-3405-Return-Rule-Details-…
…In-Payout-And-Transaction-Models Return rule details in payout and transaction models.
- Loading branch information
Showing
3 changed files
with
33 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
// ----------------------------------------------------------------------------- | ||
// Filename: RuleMinimal.cs | ||
// | ||
// Description: Minimal representation of a rule. | ||
// | ||
// Author(s): | ||
// Saurav Maiti ([email protected]) | ||
// | ||
// History: | ||
// 04 07 2024 Saurav Maiti Created, Harcourt Street, Dublin, Ireland. | ||
// | ||
// License: | ||
// MIT. | ||
// ----------------------------------------------------------------------------- | ||
|
||
namespace NoFrixion.MoneyMoov.Models; | ||
|
||
public class RuleMinimal | ||
{ | ||
public Guid ID { get; set; } | ||
|
||
public string Name { get; set; } = string.Empty; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters