(WriteContext context, in DateOnly value, bool hasGenerics)
| 94 | public override DateOnly DefaultValue => new(1970, 1, 1); |
| 95 | |
| 96 | public override void WriteData(WriteContext context, in DateOnly value, bool hasGenerics) |
| 97 | { |
| 98 | _ = hasGenerics; |
| 99 | TimeCodec.WriteDate(context, value); |
| 100 | } |
| 101 | |
| 102 | public override DateOnly ReadData(ReadContext context) |
| 103 | { |