Skip to content

Instantly share code, notes, and snippets.

@icebeam7
Created December 1, 2019 14:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save icebeam7/85b5b600895fc5c06c38b5ff5710adc9 to your computer and use it in GitHub Desktop.
Save icebeam7/85b5b600895fc5c06c38b5ff5710adc9 to your computer and use it in GitHub Desktop.
XamarinAdventCalendarApp: ExcelData.cs
using System.Collections.Generic;
namespace XamarinAdventCalendarApp.Models
{
public class ExcelData
{
public List<string> Headers { get; set; } = new List<string>();
public List<List<string>> Values { get; set; } = new List<List<string>>();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment