11 lines
193 B (Stored with Git LFS)
C#
11 lines
193 B (Stored with Git LFS)
C#
using System;
|
|
|
|
[Serializable]
|
|
public class GoogleSheetDiff
|
|
{
|
|
public string Sheet;
|
|
public string Field;
|
|
public int RowIndex;
|
|
public string OldValue;
|
|
public string NewValue;
|
|
} |