Files
MyYearlyCountings/MyYearlyCountings/Models/CalMonth.cs
2023-07-03 22:14:50 +02:00

19 lines
477 B
C#

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 YearId { 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;
}
}