Skip to content

Commit a82d211

Browse files
committed
remove Snowflake Zero setter
1 parent 508b0dd commit a82d211

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Bot/Entities/Snowflake.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ public int CompareTo(object obj)
3030
public static implicit operator Snowflake(DateTime dto) => FromDate(dto);
3131
public static implicit operator DateTime(Snowflake snowflake) => snowflake.Date.DateTime;
3232

33-
public static Snowflake Zero { get; set; } = default;
33+
public static Snowflake Zero { get; } = default;
3434

3535
public static Snowflake FromDate(DateTimeOffset dto) => new(SnowflakeUtils.ToSnowflake(dto));
3636

0 commit comments

Comments
 (0)