12 lines
262 B
C#
12 lines
262 B
C#
|
|
using System.Collections.Generic;
|
|
|
|
namespace ManagerService.DTOs
|
|
{
|
|
public class OrderedTranslationAndResourceDTO
|
|
{
|
|
public List<TranslationAndResourceDTO> translationAndResourceDTOs { get; set; }
|
|
public int order { get; set; }
|
|
}
|
|
}
|