-
Notifications
You must be signed in to change notification settings - Fork 593
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
355 additions
and
644 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
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 |
---|---|---|
@@ -1,5 +1,17 @@ | ||
// Copyright (c) ZeroC, Inc. | ||
|
||
#nullable enable | ||
|
||
namespace Ice.Internal; | ||
|
||
public sealed record class Property(string pattern, bool usesRegex, string defaultValue, bool deprecated); | ||
public sealed record class PropertyArray( | ||
string name, | ||
Property[] properties); | ||
|
||
public sealed record class Property( | ||
string pattern, | ||
bool usesRegex, | ||
string defaultValue, | ||
bool deprecated, | ||
PropertyArray? propertyClass, | ||
bool prefixOnly); |
Oops, something went wrong.