10 lines
270 B
C#
10 lines
270 B
C#
namespace CarneiroTech.Models;
|
|
|
|
public class SitemapItem
|
|
{
|
|
public string Url { get; set; } = string.Empty;
|
|
public DateTime LastModified { get; set; }
|
|
public string ChangeFrequency { get; set; } = "weekly";
|
|
public decimal Priority { get; set; } = 0.5m;
|
|
}
|