auto_service/AutoService/Models/LocalContainer.cs

20 lines
431 B
C#

using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace AutoService.Models
{
public class LocalContainer
{
public Dictionary<string, string> StringValues { get; set; } = new();
public Service SelectedService { get; set; }
public ObservableCollection<Work> Works { get; set; }
}
}