More work on nullable reference types
This commit is contained in:
@@ -2,7 +2,7 @@ namespace Umbraco.Cms.Core.Models
|
||||
{
|
||||
public class IconModel
|
||||
{
|
||||
public string? Name { get; set; }
|
||||
public string? SvgString { get; set; }
|
||||
public string Name { get; set; } = null!;
|
||||
public string SvgString { get; set; } = null!;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user