14 lines
360 B
C#
14 lines
360 B
C#
namespace Umbraco.Core.Models
|
|
{
|
|
public class ContentDataIntegrityReportEntry
|
|
{
|
|
public ContentDataIntegrityReportEntry(ContentDataIntegrityReport.IssueType issueType)
|
|
{
|
|
IssueType = issueType;
|
|
}
|
|
|
|
public ContentDataIntegrityReport.IssueType IssueType { get; }
|
|
public bool Fixed { get; set; }
|
|
}
|
|
}
|