File tree Expand file tree Collapse file tree 6 files changed +13
-20
lines changed
Coderr.Server.ReportAnalyzer/Domain/Reports
Coderr.Server.SqlServer/Tools Expand file tree Collapse file tree 6 files changed +13
-20
lines changed Original file line number Diff line number Diff line change 1
1
using System ;
2
- using DotNetCqs ;
2
+ // ReSharper disable AutoPropertyCanBeMadeGetOnly.Local
3
3
4
4
namespace codeRR . Server . Api . Core . Accounts . Events
5
5
{
@@ -31,7 +31,8 @@ protected AccountRegistered()
31
31
/// <summary>
32
32
/// Account id (primary key).
33
33
/// </summary>
34
- public int AccountId { get ; }
34
+
35
+ public int AccountId { get ; private set ; }
35
36
36
37
/// <summary>
37
38
/// The registered user is a system administrator
@@ -47,6 +48,6 @@ protected AccountRegistered()
47
48
/// <summary>
48
49
/// User name as entered by the user.
49
50
/// </summary>
50
- public string UserName { get ; }
51
+ public string UserName { get ; private set ; }
51
52
}
52
53
}
Original file line number Diff line number Diff line change 1
1
using System ;
2
- using DotNetCqs ;
2
+ // ReSharper disable AutoPropertyCanBeMadeGetOnly.Local
3
3
4
4
namespace codeRR . Server . Api . Core . ApiKeys . Commands
5
5
{
@@ -41,6 +41,6 @@ protected EditApiKey()
41
41
/// <summary>
42
42
/// Key id
43
43
/// </summary>
44
- public int Id { get ; }
44
+ public int Id { get ; private set ; }
45
45
}
46
46
}
Original file line number Diff line number Diff line change 1
1
using System ;
2
2
using DotNetCqs ;
3
+ // ReSharper disable All
3
4
4
5
namespace codeRR . Server . Api . Core . Applications . Events
5
6
{
Original file line number Diff line number Diff line change 1
1
using System ;
2
- using DotNetCqs ;
2
+ // ReSharper disable AutoPropertyCanBeMadeGetOnly.Local
3
3
4
4
namespace codeRR . Server . Api . Core . Incidents . Commands
5
5
{
@@ -29,7 +29,7 @@ protected ReOpenIncident()
29
29
/// <summary>
30
30
/// Incident to reopen
31
31
/// </summary>
32
- public int IncidentId { get ; }
32
+ public int IncidentId { get ; private set ; }
33
33
34
34
/// <summary>
35
35
/// User requesting item to be reopened.
Original file line number Diff line number Diff line change 2
2
using System . Collections . Generic ;
3
3
using System . Linq ;
4
4
using System . Security . Claims ;
5
- using codeRR . Server . ReportAnalyzer . Domain . Incidents ;
5
+ // ReSharper disable AutoPropertyCanBeMadeGetOnly.Local
6
6
7
7
namespace codeRR . Server . ReportAnalyzer . Domain . Reports
8
8
{
@@ -62,17 +62,17 @@ protected ErrorReportEntity()
62
62
/// <summary>
63
63
/// Gets or sets id from the client library
64
64
/// </summary>
65
- public string ClientReportId { get ; }
65
+ public string ClientReportId { get ; private set ; }
66
66
67
67
/// <summary>
68
68
/// Context collection
69
69
/// </summary>
70
- public ErrorReportContext [ ] ContextInfo { get ; }
70
+ public ErrorReportContext [ ] ContextInfo { get ; private set ; }
71
71
72
72
/// <summary>
73
73
/// When this entity was created (in the server)
74
74
/// </summary>
75
- public DateTime CreatedAtUtc { get ; }
75
+ public DateTime CreatedAtUtc { get ; private set ; }
76
76
77
77
/// <summary>
78
78
/// Thrown exception
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments