mirror of
https://github.com/SourMesen/Mesen2.git
synced 2025-04-02 10:21:44 -04:00
11 lines
261 B
C#
11 lines
261 B
C#
using Mesen.Interop;
|
|
using ReactiveUI.Fody.Helpers;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Mesen.Config
|
|
{
|
|
public class MemorySearchConfig : BaseWindowConfig<MemorySearchConfig>
|
|
{
|
|
[Reactive] public List<int> ColumnWidths { get; set; } = new();
|
|
}
|
|
}
|