reactredux/webapi/WeatherForecast/Models/Abstractions/PageSectionModel.cs

7 lines
177 B
C#

namespace WeatherForecast.Models.Abstractions {
public abstract class PageSectionModel {
public string? Title { get; set; }
public string? Text { get; set; }
}
}