Update 0.1.9 - Correctif UI + Default Synchronisation settings + Detect TypeChat
This commit is contained in:
13
MareSynchronos/MareConfiguration/Models/SyncOverrideEntry.cs
Normal file
13
MareSynchronos/MareConfiguration/Models/SyncOverrideEntry.cs
Normal file
@@ -0,0 +1,13 @@
|
||||
using System;
|
||||
|
||||
namespace MareSynchronos.MareConfiguration.Models;
|
||||
|
||||
[Serializable]
|
||||
public class SyncOverrideEntry
|
||||
{
|
||||
public bool? DisableSounds { get; set; }
|
||||
public bool? DisableAnimations { get; set; }
|
||||
public bool? DisableVfx { get; set; }
|
||||
|
||||
public bool IsEmpty => DisableSounds is null && DisableAnimations is null && DisableVfx is null;
|
||||
}
|
||||
Reference in New Issue
Block a user