IniPropertyAttribute.cs 214 B

12345678910111213
  1. using System;
  2. namespace Masuit.Tools.Files;
  3. public class IniPropertyAttribute : Attribute
  4. {
  5. public string Name { get; set; }
  6. public IniPropertyAttribute(string name)
  7. {
  8. Name = name;
  9. }
  10. }