sockscape/server_old/Libraries/Glove/INI/SectionRules.cs
2018-02-13 19:16:58 -06:00

15 lines
401 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Glove.INI {
public class SectionRules {
public string Name { get; set; }
public bool Required { get; set; } = true;
public bool AllowMultiple { get; set; } = false;
public string[] RequiredFields { get; set; } = new string[0];
}
}