WorkTracker/Domain/AppSettingsDocument.cs

26 lines
744 B
C#
Raw Normal View History

2026-02-18 17:11:13 +01:00
namespace WorkTracker.Domain;
public sealed class AppSettingsDocument
{
public string Id { get; set; } = "global";
public decimal StandardWorkHoursPerDay { get; set; } = 8m;
public decimal LunchBreakHours { get; set; } = 1m;
public decimal HourlyGrossRate { get; set; } = 17.5m;
public decimal ProfitabilityCoefficient { get; set; } = 0.67m;
public decimal InpsRate { get; set; } = 0.2607m;
public decimal SubstituteTaxRate { get; set; } = 0.15m;
public string Currency { get; set; } = "EUR";
public string Locale { get; set; } = "it-IT";
public DateTimeOffset CreatedAtUtc { get; set; } = DateTimeOffset.UtcNow;
public DateTimeOffset UpdatedAtUtc { get; set; } = DateTimeOffset.UtcNow;
}