13 lines
235 B
C#
13 lines
235 B
C#
namespace WeatherForecast.Models {
|
|
|
|
|
|
public class HeaderModel {
|
|
public string? Title { get; set; }
|
|
public Dictionary<string, string>? Link { get; set; }
|
|
|
|
public Dictionary<string, string>? Meta { get; set; }
|
|
}
|
|
|
|
|
|
}
|