We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 508b0dd commit a82d211Copy full SHA for a82d211
src/Bot/Entities/Snowflake.cs
@@ -30,7 +30,7 @@ public int CompareTo(object obj)
30
public static implicit operator Snowflake(DateTime dto) => FromDate(dto);
31
public static implicit operator DateTime(Snowflake snowflake) => snowflake.Date.DateTime;
32
33
- public static Snowflake Zero { get; set; } = default;
+ public static Snowflake Zero { get; } = default;
34
35
public static Snowflake FromDate(DateTimeOffset dto) => new(SnowflakeUtils.ToSnowflake(dto));
36
0 commit comments