You've already forked TranslationApp
mirror of
https://github.com/lifebottle/TranslationApp.git
synced 2026-02-13 15:25:58 -08:00
20 lines
442 B
C#
20 lines
442 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace TranslationLib
|
|
{
|
|
public class EntryFound
|
|
{
|
|
public string Folder { get; set; }
|
|
public int FileId { get; set; }
|
|
public string Section { get; set; }
|
|
public int Id { get; set; }
|
|
public XMLEntry Entry { get; set; }
|
|
public string Category { get; set; }
|
|
|
|
}
|
|
}
|