Skip to content

Commit cef5382

Browse files
committed
Removed setters from the properties of UserMetadata.
1 parent 27688ad commit cef5382

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

FirebaseAdmin/FirebaseAdmin/Auth/UserMetadata.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,15 @@ internal UserMetadata(long creationTimestamp, long lastSignInTimestamp)
2222
}
2323

2424
/// <summary>
25-
/// Gets or sets a timestamp representing the date and time that the account was created.
25+
/// Gets a timestamp representing the date and time that the account was created.
2626
/// </summary>
2727
[JsonProperty("creationTimestamp")]
28-
public long CreationTimestamp { get; set; }
28+
public long CreationTimestamp { get; }
2929

3030
/// <summary>
31-
/// Gets or sets a timestamp representing the last time that the user has logged in.
31+
/// Gets a timestamp representing the last time that the user has logged in.
3232
/// </summary>
3333
[JsonProperty("lastSignInTimestamp")]
34-
public long LastSignInTimestamp { get; set; }
34+
public long LastSignInTimestamp { get; }
3535
}
3636
}

0 commit comments

Comments
 (0)