13 lines
239 B
C#
13 lines
239 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Manager.Interfaces.DTO
|
|
{
|
|
public class TranslationDTO
|
|
{
|
|
public string Language { get; set; }
|
|
public string Value { get; set; }
|
|
}
|
|
}
|