7 lines
177 B
C#
7 lines
177 B
C#
namespace WeatherForecast.Models.Abstractions {
|
|
public abstract class PageSectionModel {
|
|
public string? Title { get; set; }
|
|
public string? Text { get; set; }
|
|
}
|
|
}
|