ColumnAttribute.cs 384 B

123456789101112131415161718
  1. namespace ExcelORM.Attributes
  2. {
  3. [AttributeUsage(AttributeTargets.Property)]
  4. public class ColumnAttribute : Attribute
  5. {
  6. public string[]? Names { get; init; }
  7. public ColumnAttribute(string name)
  8. {
  9. Names = new[] { name };
  10. }
  11. public ColumnAttribute(string[] names)
  12. {
  13. Names = names;
  14. }
  15. }
  16. }