Files
Accounting/Accounting.Models/AccountRecord.cs

14 lines
456 B
C#

using Accounting.Models.Common;
namespace Accounting.Models;
public class AccountRecord : BaseEntity
{
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;
public DateTime Stored { get; set; } = DateTime.Now.ToLocalTime();
}