11 lines
194 B
C#
11 lines
194 B
C#
namespace LiteCharms.Features.Models;
|
|
|
|
public class PageReference
|
|
{
|
|
public string? Tag { get; set; }
|
|
|
|
public string? Description { get; set; }
|
|
|
|
public string? Url { get; set; }
|
|
}
|