CPF/CPF.ReoGrid/Core/BaseBorder.cs

13 lines
186 B
C#
Raw Normal View History

2024-06-24 10:15:59 +08:00
using System;
namespace CPF.ReoGrid.Core
{
[Serializable]
internal abstract class BaseBorder
{
public int Span { get; set; }
public RangeBorderStyle Style { get; set; }
}
}