CSLA.NET 5.4.2
CSLA .NET is a software development framework that helps you build a reusable, maintainable object-oriented business layer for your app.
DictionaryCheckResult.cs
Go to the documentation of this file.
1
3{
10 internal struct DictionaryCheckResult
11 {
12 internal DictionaryCheckResult(bool isNew, int key)
13 {
14 this.IsNew = isNew;
15 this.Key = key;
16 }
17
21 internal bool IsNew { get; }
26 internal int Key { get; }
27 }
28}