Graph.cs: move from Models/ to Helpers/Billing/

This commit is contained in:
2023-09-06 14:04:14 +02:00
parent 324c5db94e
commit 28b424fe65
2 changed files with 2 additions and 1 deletions

View File

@ -4,7 +4,7 @@ using System.Collections.Generic;
using System.Linq;
using System.Text.Json.Nodes;
namespace Elwig.Models {
namespace Elwig.Helpers.Billing {
public class Graph : ICloneable {
public string Type { get; set; }

View File

@ -8,6 +8,7 @@ using System.Windows;
using System.Windows.Controls;
using System.Windows.Input;
using Elwig.Helpers;
using Elwig.Helpers.Billing;
using Elwig.Models;
using Microsoft.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore.ChangeTracking;