sockscape/server/Libraries/Glove/INI/SectionRules.cs

15 lines
401 B
C#
Raw Normal View History

2017-06-05 12:20:39 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
2017-07-22 19:27:41 +00:00
namespace Glove.INI {
2017-06-06 21:13:25 +00:00
public class SectionRules {
2017-06-07 21:02:29 +00:00
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];
2017-06-05 12:20:39 +00:00
}
}