Ändrad inläsningsmetod för Xlsx
This commit is contained in:
17
MyYearlyCountings/Models/CalMonth.cs
Normal file
17
MyYearlyCountings/Models/CalMonth.cs
Normal 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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user