using System.Collections.ObjectModel; using System.Collections.Specialized; using AutoCatCore.Model; using Microsoft.EntityFrameworkCore.ChangeTracking; namespace AutoCatCore.Services.Storage; public interface IStorageService { public bool IsLoggedIn { get; } public string? AuthToken { get; } public Task SetUser(User user); public Task AddVehicle(Vehicle vehicle); public ObservableCollection GetVehicles(); }