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

18 lines
437 B
C#

using Core.Abstractions.DomainObjects;
using Core.Abstractions.Models;
using WeatherForecast.Models.L10n;
namespace WeatherForecast.Models.Abstractions {
public abstract class PostItemRequestModelBase<T> : RequestModelBase<T> {
public List<PostItemL10nModel> L10n { get; set; }
public List<Guid>? Categories { get; set; }
public List<string>? Tags { get; set; }
public bool? FamilyFriendly { get; set; }
}
}