8 lines
195 B (Stored with Git LFS)
C#
8 lines
195 B (Stored with Git LFS)
C#
using System.Collections.Generic;
|
|
|
|
public class GoogleSheetDiffResult
|
|
{
|
|
public List<string> Added = new();
|
|
public List<string> Removed = new();
|
|
public List<string> Modified = new();
|
|
} |