mirror of
https://github.com/MilkBarModding/MilkBarLauncher.git
synced 2025-07-28 16:46:25 +00:00
11 lines
207 B
C#
11 lines
207 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Breath_of_the_Wild_Multiplayer.MVVM.Model.DTO
|
|
{
|
|
class EnvironmentalModelDTO
|
|
{
|
|
public string Folder;
|
|
public List<string> Units;
|
|
}
|
|
}
|