file-exposer/Models/Segment.cs
2025-05-12 11:09:52 -07:00

13 lines
313 B
C#

using System.Text.Json.Serialization;
namespace FileExposer.Models;
public record Segment(Record? Left,
Record? Right);
[JsonSourceGenerationOptions(WriteIndented = true)]
[JsonSerializable(typeof(Segment))]
public partial class SegmentSourceGenerationContext : JsonSerializerContext
{
}