mirror of
https://github.com/mm201/pkmn-classic-framework.git
synced 2026-08-01 23:53:39 -05:00
13 lines
218 B
C#
13 lines
218 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace PkmnFoundations.Support
|
|
{
|
|
public struct ValidationSummary
|
|
{
|
|
public bool IsValid { get; set; }
|
|
}
|
|
}
|