Files
2026-06-02 10:56:03 +02:00

14 lines
555 B
C#

using CsvHelper.Configuration.Attributes;
namespace SharepointToolbox.Web.Core.Models;
public class BulkSiteRow
{
[Name("Name")] public string Name { get; set; } = string.Empty;
[Name("Alias")] public string Alias { get; set; } = string.Empty;
[Name("Type")] public string Type { get; set; } = string.Empty;
[Name("Template")] public string Template { get; set; } = string.Empty;
[Name("Owners")] public string Owners { get; set; } = string.Empty;
[Name("Members")] public string Members { get; set; } = string.Empty;
}