2021-02-18 11:06:02 +01:00
|
|
|
|
namespace Umbraco.Cms.Core.Models.TemplateQuery
|
2014-06-09 16:42:57 +01:00
|
|
|
|
{
|
|
|
|
|
|
public class PropertyModel
|
|
|
|
|
|
{
|
2022-02-16 16:03:53 +01:00
|
|
|
|
public string? Name { get; set; }
|
2014-06-09 16:42:57 +01:00
|
|
|
|
|
2022-02-16 16:03:53 +01:00
|
|
|
|
public string Alias { get; set; } = string.Empty;
|
2014-06-09 16:42:57 +01:00
|
|
|
|
|
2022-02-16 16:03:53 +01:00
|
|
|
|
public string? Type { get; set; }
|
2014-06-09 16:42:57 +01:00
|
|
|
|
}
|
|
|
|
|
|
}
|