mirror of
https://github.com/MilkBarModding/MilkBarLauncher.git
synced 2025-07-29 17:16:29 +00:00
10 lines
183 B
C#
10 lines
183 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Breath_of_the_Wild_Multiplayer.MVVM.Model.DTO
|
|
{
|
|
public class NamesDTO
|
|
{
|
|
public Dictionary<byte, string> Names;
|
|
}
|
|
}
|