Initial commit
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
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;
|
||||
}
|
||||
Reference in New Issue
Block a user