17 lines
336 B
C#
17 lines
336 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace MyYearlyCountings.Models
|
|
{
|
|
public class CalYear
|
|
{
|
|
public int Id { get; set; }
|
|
public int Year { get; set; }
|
|
public string YearComment { get; set; } = string.Empty;
|
|
|
|
}
|
|
}
|