// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved.
// Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information.
namespace LightJson.Serialization
{
///
/// Represents a position within a plain text resource.
///
internal struct TextPosition
{
///
/// The column position, 0-based.
///
public long Column;
///
/// The line position, 0-based.
///
public long Line;
}
}