2025-01-20 14:05:21 -06:00

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;
}
}