-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathModels.cs
More file actions
32 lines (30 loc) · 857 Bytes
/
Copy pathModels.cs
File metadata and controls
32 lines (30 loc) · 857 Bytes
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
public class Word
{
public int Id { get; set; }
public string? En { get; set; }
public string? Ru { get; set; }
public string? De { get; set; }
public string? Es { get; set; }
public string? Fr { get; set; }
public string? Og { get; set; }
}
public class Sentence
{
public int Id { get; set; }
public string? En { get; set; }
public string? Ru { get; set; }
public string? De { get; set; }
public string? Es { get; set; }
public string? Fr { get; set; }
public string? Og { get; set; }
}
public class SentenceWord
{
public int Song_Id { get; set; }
public int Group_Id { get; set; }
public int Sentence_Id { get; set; }
public int Word_Id { get; set; }
public string Song_Name { get; set; } = "";
public int Sentence_Pst { get; set; }
public int Word_Pst { get; set; }
}