Add project files.

This commit is contained in:
2023-05-30 12:48:53 +02:00
parent e85e310884
commit ced65ad4b7
26 changed files with 1024 additions and 0 deletions

View File

@ -0,0 +1,19 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MyYearlyCountings.Models
{
public class AccountRecord
{
public int Id { get; set; }
public DateTime BetalDatum { get; set; } = DateTime.MinValue;
public string Mottagare { get; set; } = string.Empty;
public string Konto { get; set; } = string.Empty;
public double Belopp { get; set;}
public string Avisering { get; set; } = string.Empty;
}
}