19 lines
477 B
C#
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;
|
|
}
|
|
}
|