using Core.Abstractions.Models; using Core.DomainObjects.L10n; namespace WeatherForecast.Models.Responses.L10n { /// /// /// public class MediaAttachmentL10nModel : ResponseModelBase { /// /// /// public string Locale { get; set; } /// /// /// public string Alt { get; set; } /// /// /// public string? Target { get; set; } /// /// /// public string? Title { get; set; } /// /// /// public string? Description { get; set; } /// /// /// /// public MediaAttachmentL10nModel(MediaAttachmentL10n imageL10n) { Locale = imageL10n.Locale.Name; Alt = imageL10n.Alt; } } }