using System.ComponentModel.DataAnnotations.Schema;
using System.ComponentModel.DataAnnotations;

namespace DamageAssesment.Api.DocuLinks.Models
{
    public class LinksTranslation
    {
        public string TypeText { get; set; }
        public string Language { get; set; }
    }
}