Skip to content
This repository was archived by the owner on Oct 12, 2025. It is now read-only.

Commit 633efc5

Browse files
committed
[Core] Make nullable lint happy
1 parent 83f5b16 commit 633efc5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Lagrange.Core/Common/Entity/BotGroupMember.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ internal BotGroupMember()
1515
}
1616

1717
internal BotGroupMember(uint uin, string uid, GroupMemberPermission permission, uint groupLevel, string? memberCard,
18-
string? memberName, string? specialTitle, DateTime joinTime, DateTime lastMsgTime)
18+
string memberName, string? specialTitle, DateTime joinTime, DateTime lastMsgTime)
1919
{
2020
Uin = uin;
2121
Uid = uid;
@@ -38,7 +38,7 @@ internal BotGroupMember(uint uin, string uid, GroupMemberPermission permission,
3838

3939
public string? MemberCard { get; set; }
4040

41-
public string? MemberName { get; set; }
41+
public string MemberName { get; set; }
4242

4343
public string? SpecialTitle { get; set; }
4444

0 commit comments

Comments
 (0)