14 lines
555 B
C#
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;
|
|
}
|