17 lines
347 B
C#
17 lines
347 B
C#
using System.Collections.Specialized;
|
|
using AutoCatCore.Model;
|
|
|
|
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 ICollection<Vehicle> GetVehicles();
|
|
} |