doculink changes

This commit is contained in:
uppuv
2023-09-22 11:52:17 -04:00
parent 9dcd9d243e
commit f2c1d47749
50 changed files with 1321 additions and 1080 deletions

View File

@ -0,0 +1,16 @@
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace DamageAssesment.Api.DocuLinks.Db
{
public class DoculinkTranslation
{
[Key]
public int Id { get; set; }
[ForeignKey("Document")]
public int DocumentId { get; set; }
public string title { get; set; }
public string description { get; set; }
public string Language { get; set; }
}
}