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 11using System ;
2- using DotNetCqs ;
2+ // ReSharper disable AutoPropertyCanBeMadeGetOnly.Local
33
44namespace codeRR . Server . Api . Core . Accounts . Events
55{
@@ -31,7 +31,8 @@ protected AccountRegistered()
3131 /// <summary>
3232 /// Account id (primary key).
3333 /// </summary>
34- public int AccountId { get ; }
34+
35+ public int AccountId { get ; private set ; }
3536
3637 /// <summary>
3738 /// The registered user is a system administrator
@@ -47,6 +48,6 @@ protected AccountRegistered()
4748 /// <summary>
4849 /// User name as entered by the user.
4950 /// </summary>
50- public string UserName { get ; }
51+ public string UserName { get ; private set ; }
5152 }
5253}
Original file line number Diff line number Diff line change 11using System ;
2- using DotNetCqs ;
2+ // ReSharper disable AutoPropertyCanBeMadeGetOnly.Local
33
44namespace codeRR . Server . Api . Core . ApiKeys . Commands
55{
@@ -41,6 +41,6 @@ protected EditApiKey()
4141 /// <summary>
4242 /// Key id
4343 /// </summary>
44- public int Id { get ; }
44+ public int Id { get ; private set ; }
4545 }
4646}
Original file line number Diff line number Diff line change 11using System ;
22using DotNetCqs ;
3+ // ReSharper disable All
34
45namespace codeRR . Server . Api . Core . Applications . Events
56{
Original file line number Diff line number Diff line change 11using System ;
2- using DotNetCqs ;
2+ // ReSharper disable AutoPropertyCanBeMadeGetOnly.Local
33
44namespace codeRR . Server . Api . Core . Incidents . Commands
55{
@@ -29,7 +29,7 @@ protected ReOpenIncident()
2929 /// <summary>
3030 /// Incident to reopen
3131 /// </summary>
32- public int IncidentId { get ; }
32+ public int IncidentId { get ; private set ; }
3333
3434 /// <summary>
3535 /// User requesting item to be reopened.
Original file line number Diff line number Diff line change 22using System . Collections . Generic ;
33using System . Linq ;
44using System . Security . Claims ;
5- using codeRR . Server . ReportAnalyzer . Domain . Incidents ;
5+ // ReSharper disable AutoPropertyCanBeMadeGetOnly.Local
66
77namespace codeRR . Server . ReportAnalyzer . Domain . Reports
88{
@@ -62,17 +62,17 @@ protected ErrorReportEntity()
6262 /// <summary>
6363 /// Gets or sets id from the client library
6464 /// </summary>
65- public string ClientReportId { get ; }
65+ public string ClientReportId { get ; private set ; }
6666
6767 /// <summary>
6868 /// Context collection
6969 /// </summary>
70- public ErrorReportContext [ ] ContextInfo { get ; }
70+ public ErrorReportContext [ ] ContextInfo { get ; private set ; }
7171
7272 /// <summary>
7373 /// When this entity was created (in the server)
7474 /// </summary>
75- public DateTime CreatedAtUtc { get ; }
75+ public DateTime CreatedAtUtc { get ; private set ; }
7676
7777 /// <summary>
7878 /// Thrown exception
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments