Ändrad inläsningsmetod för Xlsx

This commit is contained in:
2023-06-04 23:28:20 +02:00
parent ced65ad4b7
commit 0e8c8f179c
14 changed files with 155 additions and 98 deletions

View File

@ -0,0 +1,17 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MyYearlyCountings.Models
{
public class CalMonth
{
public int Id { get; set; }
public int Year { get; set; }
public int Month { get; set; }
public string MonthName { get; set; } = string.Empty;
public string MonthComment { get; set; } = string.Empty;
}
}