13 lines
336 B
C#
Raw Normal View History

2023-08-31 19:00:51 -04:00
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
2023-09-22 11:52:17 -04:00
namespace DamageAssesment.Api.DocuLinks.Models
2023-08-31 19:00:51 -04:00
{
2023-09-22 11:52:17 -04:00
public class DoculinkTranslation
2023-08-31 19:00:51 -04:00
{
public string title { get; set; }
public string description { get; set; }
public string Language { get; set; }
}
}