13 lines
337 B
C#
13 lines
337 B
C#
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace DamageAssesment.Api.Documents.Models
|
|
{
|
|
public class DocumentsTranslation
|
|
{
|
|
public string title { get; set; }
|
|
public string description { get; set; }
|
|
public string Language { get; set; }
|
|
}
|
|
}
|