You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
using Connected.Components;
|
|
|
|
|
|
|
|
|
|
namespace Connected.Services
|
|
|
|
|
{
|
|
|
|
|
// Add additional configuration objects here when adding new services
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Common services configuration required by MudBlazor components
|
|
|
|
|
/// </summary>
|
|
|
|
|
public class MudServicesConfiguration
|
|
|
|
|
{
|
|
|
|
|
public SnackbarConfiguration SnackbarConfiguration { get; set; } = new SnackbarConfiguration();
|
|
|
|
|
public ResizeOptions ResizeOptions { get; set; } = new ResizeOptions();
|
|
|
|
|
public ResizeObserverOptions ResizeObserverOptions { get; set; } = new ResizeObserverOptions();
|
|
|
|
|
public PopoverOptions PopoverOptions { get; set; } = new PopoverOptions();
|
|
|
|
|
}
|
|
|
|
|
}
|