reactredux/webapi/WeatherForecast/Models/PostItemModel.cs

24 lines
489 B
C#

namespace WeatherForecast.Models {
public abstract class PostItemModel {
public Guid Id { get; set; }
public string Slug { get; set; }
public ImageModel Image { get; set; }
public string Badge { get; set; }
public string Title { get; set; }
public string ShortText { get; set; }
public string Text { get; set; }
public AuthorModel Author { get; set; }
public DateTime Created { get; set; }
public List<string> Tags { get; set; }
}
}