9 lines
248 B
C#
9 lines
248 B
C#
namespace SharepointToolbox.Web.Core.Models;
|
|
|
|
public class DuplicateGroup
|
|
{
|
|
public string GroupKey { get; set; } = string.Empty;
|
|
public string Name { get; set; } = string.Empty;
|
|
public List<DuplicateItem> Items { get; set; } = new();
|
|
}
|