-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathVortaro.cs
55 lines (54 loc) · 1.5 KB
/
Vortaro.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
using System;
namespace TujaEsploristo
{
public class vortoStruKt
{
public string prefikso { get; set; }
public string radiko { get; set; }
public string sufikso { get; set; }
public string vorto
{
get
{
string vor = string.Empty;
if (!string.IsNullOrWhiteSpace(prefikso))
vor += prefikso;
vor += radiko;
if (!string.IsNullOrWhiteSpace(sufikso))
vor += sufikso;
vor = vor.Replace(System.Environment.NewLine, " ").Trim();
return vor;
}
}
}
public struct vortaro
{
public string vorto { get; set; }
public string traduko { get; set; }
public string homografo { get; set; }
}
public struct Etimologio
{
public string vorto { get; set; }
public string etimologio { get; set; }
}
public struct Difino
{
public string vorto { get; set; }
public string frazo { get; set; }
public string ekzemploKleo { get; set; }
public string retavortaro { get; set; }
}
public struct Ekzemplo
{
public string vorto { get; set; }
public string frazo { get; set; }
public string difinoKleo { get; set; }
public string retavortaro { get; set; }
}
public struct unicodage
{
public string nomo { get; set; }
public string kodo { get; set; }
}
}