Files
TranslationApp/TranslationLib/EntryFound.cs
2024-11-21 00:48:04 -05:00

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; }
}
}