20 lines
537 B
C#
20 lines
537 B
C#
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;
|
|
|
|
}
|
|
}
|