Добавьте файлы проекта.

This commit is contained in:
melekhin
2026-06-05 15:58:03 +07:00
parent 785bd7dc5d
commit cf8ef7add7
56 changed files with 13478 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
namespace QWERTYkez.ExcelProcessor.Editors;
public class NumberFormatPattern
{
public string Format { get; }
internal int? Id { get; private set; }
public NumberFormatPattern(string format, ushort id = 0)
{
Format = format ?? throw new ArgumentNullException(nameof(format));
if (id != 0) Id = id;
}
internal void Attach(ushort id) => Id = id;
public override bool Equals(object? obj) =>
obj is NumberFormatPattern other && Format == other.Format;
public override int GetHashCode() => Format?.GetHashCode() ?? 0;
}